Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 87 for imposes (0.11 sec)

  1. hack/logcheck.conf

    structured k8s.io/apiserver/pkg/server/options/encryptionconfig/.*
    
    # The following packages have been migrated to contextual logging.
    # Packages matched here do not have to be listed above because
    # "contextual" implies "structured".
    contextual k8s.io/api/.*
    contextual k8s.io/apimachinery/pkg/util/runtime/.*
    contextual k8s.io/client-go/metadata/.*
    contextual k8s.io/client-go/tools/events/.*
    contextual k8s.io/client-go/tools/record/.*
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/contracts/description/KtEffects.kt

        }
    }
    
    public typealias KtContractCallsInPlaceContractEffectDeclaration = KaContractCallsInPlaceContractEffectDeclaration
    
    /**
     * Represents [kotlin.contracts.SimpleEffect.implies].
     */
    public class KaContractConditionalContractEffectDeclaration(
        private val backingEffect: KaContractEffectDeclaration,
        private val backingCondition: KaContractBooleanExpression
    ) : KaContractEffectDeclaration {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/ProcessInInitScriptIntegrationTest.groovy

            given:
            def snippets = snippetsFactory.newSnippets(execOperationsFixture)
    
            def initScriptFile = testDirectory.file(file)
            initScriptFile << """
                ${snippets.imports}
                ${snippets.body}
            """
            executer.usingInitScript(initScriptFile)
    
            when:
            configurationCacheFails(":help")
    
            then:
            failure.assertOutputContains("Hello")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/ComponentGraphResolveMetadata.java

    import javax.annotation.Nullable;
    import java.util.List;
    
    /**
     * Immutable metadata for a component instance (ie version of a component) that is used to perform dependency graph resolution.
     *
     * <p>Note this interface exposes only information that is required for dependency graph resolution. In particular, it does not provide any information about the available artifacts of this
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/syntax/type.go

    	GetTypeInfo() TypeAndValue
    }
    
    // A TypeAndValue records the type information, constant
    // value if known, and various other flags associated with
    // an expression.
    // This type is similar to types2.TypeAndValue, but exposes
    // none of types2's internals.
    type TypeAndValue struct {
    	Type  Type
    	Value constant.Value
    	exprFlags
    }
    
    type exprFlags uint16
    
    func (f exprFlags) IsVoid() bool          { return f&1 != 0 }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskSelectionIntegrationTest.groovy

            then:
            result.assertTasksExecuted(":a:thing", ":b:thing", ":a:a:thing", ":b:b:thing")
        }
    
        @ToBeFixedForIsolatedProjects(because = "subprojects")
        def "stops traversing sub-projects when task implies sub-projects"() {
            createDirs("a", "b", "a/a", "b/b")
            settingsFile << "include 'a', 'b', 'a:a', 'b:b'"
    
            buildFile << """
                subprojects {
                    task thing
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  7. src/go/internal/gcimporter/gcimporter.go

    		// "./x" -> "/this/directory/x.ext", "/this/directory/x"
    		noext = filepath.Join(srcDir, path)
    		id = noext
    
    	case filepath.IsAbs(path):
    		// for completeness only - go/build.Import
    		// does not support absolute imports
    		// "/x" -> "/x.ext", "/x"
    		noext = path
    		id = path
    	}
    
    	if false { // for debugging
    		if path != id {
    			fmt.Printf("%s -> %s\n", path, id)
    		}
    	}
    
    	// try extensions
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/schema/schema_utils.cc

    // library will feed zero value, which is the default value in the v3a schema.
    // The actual builtin operator code value will exist in the
    // `deprecated_builtin_code` field. At the same time, it implies that
    // `deprecated_builtin_code` >= `builtin_code` and the maximum value of the two
    // fields will be same with `deprecated_builtin_code'.
    //
    // - Supporting builtin operator codes beyonds 127
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/ProcessInTransformIntegrationTest.groovy

            return new TransformFixture(
                """
                import ${Inject.name};
                import ${ExecOperations.name};
                ${snippets.imports}
                """,
    
                """
                @Inject
                public abstract ExecOperations getExecOperations();
                """,
    
                snippets.body
            )
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r60/TestOutputCrossVersionSpec.groovy

    import org.gradle.tooling.events.test.TestOutputEvent
    
    @TargetGradleVersion('>=6.0')
    class TestOutputCrossVersionSpec extends ToolingApiSpecification implements WithOldConfigurationsSupport {
    
        def "test execution exposes test output"() {
            when:
            runTestAndCollectProgressEvents()
            def events = getOutputEvents()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.8K bytes
    - Viewed (0)
Back to top