Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,284 for tcRange (0.2 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/defer_activation_transpose.mlir

    // CHECK: %[[ADD_0:.+]] = stablehlo.add %[[ARG_0]], %[[TRANSPOSE_0]] : tensor<1x3x3x4xf32>
    // CHECK: %[[TRANSPOSE_1:.+]] = stablehlo.transpose
    // CHECK: return %[[TRANSPOSE_1]]
    
    // -----
    
    // [No change] Tests that the activation transpose whose permutation is not
    // `[0, 3, 1, 2]` is not deferred.
    
    // CHECK-LABEL: add_with_activation_transpose_permutation_mismatch
    func.func @add_with_activation_transpose_permutation_mismatch(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 18 20:32:46 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/dynamic_versions.adoc

    By default, Gradle caches dynamic versions for 24 hours. To change how long Gradle will cache the resolved version for a dynamic version, use:
    
    .Dynamic version cache control
    ====
    include::sample[dir="snippets/dependencyManagement/troubleshooting-cache-dynamic/kotlin",files="build.gradle.kts[tags=dynamic-version-cache-control]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/IncrementalBuildIntegrationTest.groovy

            succeeds "b"
    
            then:
            result.assertTasksSkipped(":a", ":b")
    
            // Change intermediate output file timestamp, same content
            when:
            outputFileA.makeOlder()
            succeeds "b"
    
            then:
            result.assertTasksSkipped(":a", ":b")
    
            // Change input file location
            when:
            changesFile << '''
    a.inputFile = file('new-a-input.txt')
    '''
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  4. pkg/kubelet/config/config.go

    		return false
    	}
    	return true
    }
    
    // checkAndUpdatePod updates existing, and:
    //   - if ref makes a meaningful change, returns needUpdate=true
    //   - if ref makes a meaningful change, and this change is graceful deletion, returns needGracefulDelete=true
    //   - if ref makes no meaningful change, but changes the pod status, returns needReconcile=true
    //   - else return all false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  5. pkg/registry/core/service/strategy.go

    // in order to avoid breaking clients we try really hard to infer what users
    // mean when they change them.
    //
    // Services are effectively a discriminated union, where `type` is the
    // discriminator. Some fields just don't make sense with some types, so we
    // clear them.
    //
    // As a rule, we almost never change user input.  This can get tricky when APIs
    // evolve and new dependent fields are added.  This specific case includes
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 13:09:36 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  6. plugin/pkg/admission/extendedresourcetoleration/admission_test.go

    		expectedPod  core.Pod
    	}{
    		{
    			description: "empty pod without any extended resources, expect no change in tolerations",
    			requestedPod: core.Pod{
    				Spec: core.PodSpec{},
    			},
    			expectedPod: core.Pod{
    				Spec: core.PodSpec{},
    			},
    		},
    		{
    			description: "pod with container without any extended resources, expect no change in tolerations",
    			requestedPod: core.Pod{
    				Spec: core.PodSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 20 15:11:00 UTC 2019
    - 10.3K bytes
    - Viewed (0)
  7. CONTRIBUTING.md

    Before starting to work on a feature or a bug fix, please open an issue to discuss the use case or bug with us. This can save everyone a lot of time and frustration.
    
    For any non-trivial change, we need to be able to answer these questions:
    
    * Why is this change done? What's the use case?
    * For user facing features, what will the API look like?
    * What test cases should it have? What could go wrong?
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 01:39:23 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/JavaClassChangeIncrementalCompilationIntegrationTest.groovy

            succeeds language.compileTaskName
            outputs.recompiledClasses('MyClass', 'MyClass2', 'TopLevel$Inner', 'TopLevel')
        }
    
        // Expected since any change inside same compile task will cause recompilation of any dependent class
        def "non-abi change to constant origin class causes partial recompilation"() {
            source "class A { final static int x = 1; int method() { return 1; } }",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 21.1K bytes
    - Viewed (0)
  9. pkg/proxy/endpointslicecache.go

    			continue
    		}
    
    		change := &endpointsChange{}
    
    		change.previous = cache.getEndpointsMap(serviceNN, esTracker.applied)
    
    		for name, sliceData := range esTracker.pending {
    			if sliceData.remove {
    				delete(esTracker.applied, name)
    			} else {
    				esTracker.applied[name] = sliceData
    			}
    
    			delete(esTracker.pending, name)
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:07:21 UTC 2024
    - 11.7K bytes
    - Viewed (1)
  10. src/runtime/mbarrier.go

    // color of the object containing the slot. We chose not to make these
    // conditional because the cost of ensuring that the object holding
    // the slot doesn't concurrently change color without the mutator
    // noticing seems prohibitive.
    //
    // Consider the following example where the mutator writes into
    // a slot and then loads the slot's mark bit while the GC thread
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 15.7K bytes
    - Viewed (0)
Back to top