Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 466 for composed (0.33 sec)

  1. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/interface.go

    	// Authorizer provides the authorizer used for the "authorizer" and
    	// "authorizer.requestResource" variable bindings. If the expression was compiled with
    	// OptionalVariableDeclarations.HasAuthorizer set to true this must be non-nil.
    	Authorizer authorizer.Authorizer
    }
    
    // Filter contains a function to evaluate compiled CEL-typed values
    // It expects the inbound object to already have been converted to the version expected
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  2. src/cmd/link/internal/sym/compilation_unit.go

    // type from the sym package since loader imports sym.
    type LoaderSym uint32
    
    // A CompilationUnit represents a set of source files that are compiled
    // together. Since all Go sources in a Go package are compiled together,
    // there's one CompilationUnit per package that represents all Go sources in
    // that package, plus one for each assembly file.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 20:39:56 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/Swift3Test.groovy

                    """#if swift(>=4.0)
                            XCTFail("Compilation unit compiled with Swift 4+ instead of Swift 3.x");
                        #elseif swift(>=3.0)
                            // Do nothing
                        #else
                            XCTFail("Compilation unit compiled with Swift 2- instead of Swift 3.x");
                        #endif
                    """)
            ]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. src/runtime/tls_ppc64x.s

    // are in external code, and will continue to use R30,
    // this might well result in another SIGSEGV.
    
    // save_g saves the g register into pthread-provided
    // thread-local memory, so that we can call externally compiled
    // ppc64 code that will overwrite this register.
    //
    // If !iscgo, this is a no-op.
    //
    // NOTE: setg_gcc<> assume this clobbers only R31.
    TEXT runtime·save_g(SB),NOSPLIT|NOFRAME,$0-0
    #ifndef GOOS_aix
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 02:48:11 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/testFixtures/kotlin/org/gradle/kotlin/dsl/fixtures/AbstractDslTest.kt

        protected
        val kotlinDslEvalBaseTempDir: File
            get() = dslTestFixture.kotlinDslEvalBaseTempDir
    
        /**
         * Evaluates the given Kotlin [script] against this [Project] writing compiled classes
         * to sub-directories of [baseCacheDir] using [scriptCompilationClassPath].
         */
        fun Project.eval(
            script: String,
            baseCacheDir: File = kotlinDslEvalBaseCacheDir,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  6. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10PsiTypeProvider.kt

    import com.intellij.psi.PsiElement
    import com.intellij.psi.PsiType
    import com.intellij.psi.PsiTypeElement
    import com.intellij.psi.SyntheticElement
    import com.intellij.psi.impl.compiled.ClsTypeElementImpl
    import com.intellij.psi.impl.compiled.SignatureParsing
    import com.intellij.psi.impl.compiled.StubBuildingVisitor
    import org.jetbrains.kotlin.analysis.api.components.KaPsiTypeProvider
    import org.jetbrains.kotlin.analysis.api.descriptors.KaFe10Session
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 20:26:34 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/groovy/scripts/GroovyCompileScriptBuildOperationIntegrationTest.groovy

                CLASSPATH,
                BODY,
                CLASSPATH,
                BODY,
                CLASSPATH,
                BODY,
                CLASSPATH,
                BODY
            ]
    
            when: // already compiled build scripts
            succeeds "help", '-I', 'init.gradle'
    
            then:
            operations.all(CompileScriptBuildOperationType).size() == 0
    
            when: // changing cached build script
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 01 03:07:53 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/recomp/SourceFileClassNameConverter.java

    import java.util.Set;
    
    public interface SourceFileClassNameConverter {
        /**
         * Returns the classes that were compiled from this source file or an empty set if unknown.
         */
        Set<String> getClassNames(String sourceFileRelativePath);
    
        /**
         * Returns the source files that this class was compiled from.
         * Can be multiple files when the same class declaration was made in several files.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  9. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/tasks/SourceSetOutput.java

    package org.gradle.api.tasks;
    
    import org.gradle.api.file.FileCollection;
    
    import javax.annotation.Nullable;
    import java.io.File;
    import java.util.Map;
    
    /**
     * A collection of all output directories (compiled classes, processed resources, etc.) - notice that {@link SourceSetOutput} extends {@link FileCollection}.
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  10. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/ChildMapFactory.java

            }
        }
    
        static <T> ChildMap<T> childMap(CaseSensitivity caseSensitivity, ChildMap.Entry<T> entry1, ChildMap.Entry<T> entry2) {
            int compared = PathUtil.getPathComparator(caseSensitivity).compare(entry1.getPath(), entry2.getPath());
            List<ChildMap.Entry<T>> sortedEntries = compared < 0
                ? ImmutableList.of(entry1, entry2)
                : ImmutableList.of(entry2, entry1);
            return childMapFromSorted(sortedEntries);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 2.6K bytes
    - Viewed (0)
Back to top