Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 438 for Street (0.3 sec)

  1. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ProgressEvents.groovy

         * Asserts that the events form exactly one well-formed trees of operations.
         */
        void assertHasSingleTree() {
            assertHasZeroOrMoreTrees()
            assert !operations.empty
            assert operations[0].descriptor.parent == null
    
            operations.tail().each { assert it.descriptor.parent != null }
        }
    
        /**
         * Asserts that the events form a typical tree of operations for a build.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 13:50:05 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheValueSourceIntegrationTest.groovy

                tasks.register("greet", MyTask) {
                    greeting = greetValueSource
                }
            """)
    
            when:
            configurationCacheRun "greet"
    
            then:
            configurationCache.assertStateStored()
            output.contains("Hello!")
    
            when:
            configurationCacheRun "greet"
    
            then:
            configurationCache.assertStateLoaded()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  3. pkg/controller/podautoscaler/replica_calculator.go

    			}
    		} else if usageRatio > 1.0 {
    			// on a scale-up, treat missing pods as using 0% of the resource request
    			for podName := range missingPods {
    				metrics[podName] = metricsclient.PodMetric{Value: 0}
    			}
    		}
    	}
    
    	if scaleUpWithUnready {
    		// on a scale-up, treat unready pods as using 0% of the resource request
    		for podName := range unreadyPods {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Aug 19 03:31:34 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  4. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/AbstractFileCollection.java

                    // Visit the contents of the tree to generate the tree
                    if (visitAll(sourceTree)) {
                        fileTrees.add(sourceTree.getMirror());
                    }
                }
            });
            return fileTrees;
        }
    
        /**
         * Visits all the files of the given tree.
         */
        protected static boolean visitAll(FileSystemMirroringFileTree tree) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 07:32:50 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  5. pilot/pkg/xds/eds_sh_test.go

    					"159.122.219.2": 4,
    
    					// 3 endpoints on network 3, weights split across 2 gateways.
    					"159.122.219.3": 3,
    					"179.114.119.3": 3,
    
    					// no gateway defined for network 4 - treat as directly reachable.
    					"10.4.0.1": 2,
    					"10.4.0.2": 2,
    					"10.4.0.3": 2,
    					"10.4.0.4": 2,
    				},
    			},
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/import.go

    	// This check is unnecessary inside the module cache
    	// and important to skip in the vendor directory,
    	// where all the module trees have been overlaid.
    	// So we only check local module trees
    	// (the main module, and any directory trees pointed at by replace directives).
    	if isLocal {
    		for d := dir; d != mdir && len(d) > len(mdir); {
    			haveGoMod := haveGoModCache.Do(d, func() bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 27.7K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/tls.go

    					// Scan all the match blocks
    					// if we find any match block without a runtime destination subnet match
    					// i.e. match any destination address, then we treat it as the terminal match/catch all match
    					// and break out of the loop. We also treat it as a terminal match if the listener is bound
    					// to a unix domain socket.
    					// But if we find only runtime destination subnet matches in all match blocks, collect them
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl-provider-plugins/src/main/kotlin/org/gradle/kotlin/dsl/provider/plugins/precompiled/DefaultPrecompiledScriptPluginsSupport.kt

        }
    }
    
    
    private
    val scriptTemplates by lazy {
        listOf(
            // treat *.settings.gradle.kts files as Settings scripts
            PrecompiledSettingsScript::class.qualifiedName!!,
            // treat *.init.gradle.kts files as Gradle scripts
            PrecompiledInitScript::class.qualifiedName!!,
            // treat *.gradle.kts files as Project scripts
            PrecompiledProjectScript::class.qualifiedName!!
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 10:44:10 UTC 2024
    - 21K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/networking/v1beta1/types.go

    	//   priority.
    	PathTypePrefix = PathType("Prefix")
    
    	// PathTypeImplementationSpecific matching is up to the IngressClass.
    	// Implementations can treat this as a separate PathType or treat it
    	// identically to Prefix or Exact path types.
    	PathTypeImplementationSpecific = PathType("ImplementationSpecific")
    )
    
    // HTTPIngressPath associates a path with a backend. Incoming urls matching the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:30 UTC 2023
    - 19.7K bytes
    - Viewed (0)
  10. src/test/java/jcifs/tests/FileOperationsTest.java

                f.createNewFile();
                boolean renamed = false;
                try {
                    f.renameTo(tgt, true);
                    Assert.assertFalse("Should not be able to rename between trees", true);
                }
                catch ( SmbUnsupportedOperationException e ) {
                    try ( SmbTreeHandle th = defaultShareRoot.getTreeHandle() ) {
                        Assume.assumeTrue("Not SMB2", th.isSMB2());
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:17:59 UTC 2023
    - 16.3K bytes
    - Viewed (0)
Back to top