Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 1,485 for corerest (0.27 sec)

  1. hack/make-rules/cross.sh

    # platforms.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/../..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    # NOTE: Using "${array[*]}" here is correct.  [@] becomes distinct words (in
    # bash parlance).
    
    make all WHAT="${KUBE_SERVER_TARGETS[*]}" KUBE_BUILD_PLATFORMS="${KUBE_SERVER_PLATFORMS[*]}"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 26 05:56:36 UTC 2019
    - 1.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/decompose_resource_ops.h

    // to facilitate transformations like resource op lifting.
    // NOTE: These patterns do not support `use_locking=true` for a lot of resource
    // operations. So decomposition may not be correct outside of backends like XLA,
    // which automatically locks all resource variables.
    void PopulateDecomposeResourceOpsPatterns(MLIRContext *context,
                                              RewritePatternSet *patterns);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 27 15:05:02 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  3. pkg/volume/iscsi/iscsi_util_test.go

    	if transportName != "tcp" {
    		t.Errorf("extractTransportname: Could not extract correct iface.transport_name 'tcp', got %s", transportName)
    	}
    	transportName = extractTransportname(fakeIscsiadmOutput[1])
    	if transportName != "cxgb4i" {
    		t.Errorf("extractTransportname: Could not extract correct iface.transport_name 'cxgb4i', got %s", transportName)
    	}
    	transportName = extractTransportname(fakeIscsiadmOutput[2])
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 18 09:43:07 UTC 2022
    - 14.5K bytes
    - Viewed (0)
  4. platforms/documentation/samples/src/integTest/groovy/org/gradle/integtests/samples/SamplesRepositoriesIntegrationTest.groovy

        }
    
        @LeaksFileHandles
        @UsesSample("artifacts/defineRepository")
        def "can use repositories notation with #dsl dsl"() {
            // This test is not very strong. Its main purpose is to the for the correct syntax as we use many
            // code snippets from this build script in the user's guide.
            executer.inDirectory(sample.dir.file(dsl))
    
            expect:
            succeeds('lookup')
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/passes/remove_identity_op_pattern.h

    namespace mlir {
    namespace quant {
    
    // Copied from tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc.
    // By removing identity ops, constant operands with dynamic shapes have static
    // shape information which is necessary for correct pattern matching in this
    // pass.
    struct RemoveIdentity : public OpRewritePattern<TF::IdentityOp> {
      using OpRewritePattern<TF::IdentityOp>::OpRewritePattern;
    
      LogicalResult matchAndRewrite(TF::IdentityOp identity,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 15 06:13:49 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/base/FunctionsTest.java

        assertEquals("correct", f.apply(new Object()));
        assertEquals("correct", f.apply(null));
    
        Function<@Nullable Object, @Nullable String> g = Functions.constant(null);
        assertEquals(null, g.apply(2));
        assertEquals(null, g.apply(null));
    
        new EqualsTester()
            .addEqualityGroup(f, Functions.constant("correct"))
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 16K bytes
    - Viewed (0)
  7. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/dom/DomResolutionTest.kt

        }
    
        @Test
        fun `maps resolution errors to document errors`() {
            val resolver = tracingCodeResolver()
    
            val topLevelBlock = parseAsTopLevelBlock(
                """
                addAndConfigure("correct") { }
                addAndConfigure("lambda missing")
                addAndConfigure("incorrect signature", 1) {
                    number = 123
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:09 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  8. maven-model-builder/src/test/resources/poms/validation/raw-model/bad-parent-version-release.xml

      </parent>
      <groupId>com.example.group</groupId>
      <artifactId>valid-version-wrong</artifactId>
      <version>1.0</version>
    
      <description>
        This will test if the validation for the parent version
        is working correct in case of usage of RELEASE
      </description>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Dec 24 18:50:27 UTC 2020
    - 1.4K bytes
    - Viewed (0)
  9. maven-model-builder/src/test/resources/poms/validation/raw-model/bad-parent-version-latest.xml

      </parent>
      <groupId>com.example.group</groupId>
      <artifactId>valid-version-wrong</artifactId>
      <version>1.0</version>
    
      <description>
        This will test if the validation for the parent version
        is working correct in case of usage of LATEST
      </description>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Dec 24 18:50:27 UTC 2020
    - 1.4K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r21/TaskVisibilityCrossVersionSpec.groovy

            group 'build'
        }
    }
    
    project(':b:c') {
        task t1 {
            group 'build'
        }
        task t2 {
            group 'build'
        }
    }'''
        }
    
        def "task visibility is correct"() {
            def publicTasks = rootProjectImplicitTasks - rootProjectImplicitInvisibleTasks + ['t2']
            def publicSelectors = rootProjectImplicitSelectors - rootProjectImplicitInvisibleSelectors + ['t1', 't2']
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.9K bytes
    - Viewed (0)
Back to top