Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 96 for realm (0.06 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/suppliers/DynamicRevisionRemoteResolveWithMetadataSupplierIntegrationTest.groovy

            outputContains "Changing status for group:projectB:1.1 from 'should be overridden by rule' to 'release'"
    
            // second one comes from the rule executed on "real" metadata, after parsing the module
            outputContains "Changing status for group:projectB:1.1 from '${GradleMetadataResolveRunner.useIvy() ? 'integration' : 'release'}' to 'release'"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 11:46:17 UTC 2024
    - 49K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/transforms/compose_uniform_quantized_type_pass.cc

    //
    // Currently assumes asymmetric per-tensor quantization for activations and
    // symmetric per-channel quantization for filters.
    //
    // This pattern represents the following derived equation, where:
    // * rn = real (expressed) value for tensor n
    // * qn = quantized value for tensor n
    // * sn = scale for tensor n
    // * zn = zero point for tensor n
    //
    // r3 = r1 * r2
    //    = s1 (q1 - z1) * s2 (q2 - z2)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  3. src/runtime/mgcscavenge.go

    	//
    	// If this is nil, it is populated with the real thing in init.
    	scavenge func(n uintptr) (uintptr, int64)
    
    	// shouldStop is a callback called in the work loop and provides a
    	// point that can force the scavenger to stop early, for example because
    	// the scavenge policy dictates too much has been scavenged already.
    	//
    	// If this is nil, it is populated with the real thing in init.
    	shouldStop func() bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

                    }
                }
                upcomingNoLongerPendingConstraints = null;
            }
            // This part covers constraint that might be triggered in the future if the node they point gains a real edge
            if (cachedFilteredDependencyStates != null && !cachedFilteredDependencyStates.isEmpty()) {
                // We may have registered this node as pending if it had constraints.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  5. src/cmd/go/go_test.go

    	tg.grepStdout(`^bytes$`, "missing real bytes")
    	tg.grepStdout(`^bytes \[bytes.test\]$`, "missing test copy of bytes")
    	tg.grepStdout(`^testing \[bytes.test\]$`, "missing test copy of testing")
    	tg.grepStdoutNot(`^testing$`, "unexpected real copy of testing")
    
    	tg.run("list", "-test", "bytes")
    	tg.grepStdout(`^bytes.test$`, "missing test main")
    	tg.grepStdout(`^bytes$`, "missing real bytes")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  6. pkg/controller/endpointslice/endpointslice_controller_test.go

    			assert.ElementsMatch(t, testcase.expectedEndpoints, slice.Endpoints)
    		})
    	}
    }
    
    // TestPodAddsBatching verifies that endpoint updates caused by pod addition are batched together.
    // This test uses real time.Sleep, as there is no easy way to mock time in endpoints controller now.
    // TODO(mborsz): Migrate this test to mock clock when possible.
    func TestPodAddsBatching(t *testing.T) {
    	t.Parallel()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AbstractClassGenerator.java

                getters.add(metadata);
                if (mainGetter == null) {
                    mainGetter = metadata;
                } else if (!mainGetter.shouldImplement() && metadata.shouldImplement()) {
                    // Prefer a real method over synthetic
                    mainGetter = metadata;
                } else if (mainGetter.getReturnType().equals(Boolean.TYPE) && !metadata.getReturnType().equals(Boolean.TYPE)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 63K bytes
    - Viewed (0)
  8. pkg/kubelet/stats/cri_stats_provider_test.go

    		cached := provider.getContainerUsageNanoCores(test.stats)
    		assert.Nil(t, cached)
    
    		// Update the cache and get the latest value.
    		real := provider.getAndUpdateContainerUsageNanoCores(test.stats)
    		assert.Equal(t, test.expected, real, test.desc)
    
    		// After the update, the cached value should be up-to-date
    		cached = provider.getContainerUsageNanoCores(test.stats)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/debug.go

    		// Now examine the block again, handling things other than the
    		// "begins at block start" lifetimes.
    		zeroWidthPending := false
    		prologComplete := false
    		// expect to see values in pattern (apc)* (zerowidth|real)*
    		for _, v := range b.Values {
    			if blockPrologComplete(v) {
    				prologComplete = true
    			}
    			slots := state.valueNames[v.ID]
    			reg, _ := state.f.getHome(v.ID).(*Register)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  10. guava/src/com/google/common/reflect/TypeToken.java

       * Foo<Enum<?>>} according to JLS. See testRecursiveWildcardSubtypeBug() for a real example.
       *
       * <p>It appears that properly handling recursive type bounds in the presence of implicit type
       * bounds is not easy. For now we punt, hoping that this defect should rarely cause issues in real
       * code.
       *
       * @param formalType is {@code Foo<formalType>} a supertype of {@code Foo<T>}?
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
Back to top