Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 427 for instructed (0.17 sec)

  1. platforms/core-runtime/files/src/main/java/org/gradle/internal/file/Deleter.java

        /**
         * Attempts to delete the given file or directory recursively.
         *
         * Can delete directories with contents.
         * Follows symlinks pointing to directories when instructed to.
         *
         * @return {@code true} if anything was removed, {@code false} if no change was
         *         attempted (because {@code target} didn't exist).
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/CaptureIncrementalStateBeforeExecutionStepTest.groovy

            1 * outputSnapshotter.snapshotOutputs(work, _) >> { throw failure }
            interaction { snapshotState() }
            0 * _
    
            assertOperation(ex)
        }
    
        def "detects overlapping outputs when instructed"() {
            def previousExecutionState = Mock(PreviousExecutionState)
            def previousOutputSnapshot = Mock(FileSystemSnapshot)
            def previousOutputSnapshots = ImmutableSortedMap.of("outputDir", previousOutputSnapshot)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/eventbus/AsyncEventBusTest.java

      }
    
      public void testBasicDistribution() {
        StringCatcher catcher = new StringCatcher();
        bus.register(catcher);
    
        // We post the event, but our Executor will not deliver it until instructed.
        bus.post(EVENT);
    
        List<String> events = catcher.getEvents();
        assertTrue("No events should be delivered synchronously.", events.isEmpty());
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 2.3K bytes
    - Viewed (0)
  4. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/AbstractCaptureStateBeforeExecutionStepTest.groovy

        def setup() {
            _ * work.inputFingerprinter >> inputFingerprinter
        }
    
        def "no state is captured when instructed to skip"() {
            when:
            step.execute(work, context)
            then:
            assertNoOperation()
            _ * context.shouldCaptureBeforeExecutionState() >> false
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:34 UTC 2023
    - 7K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/file/copy/NormalizingCopyActionDecorator.java

    import java.util.List;
    import java.util.Map;
    import java.util.Set;
    
    /**
     * A {@link CopyAction} which cleans up the tree as it is visited. Removes duplicate directories and adds in missing directories. Removes empty directories if instructed to do so by copy
     * spec.
     */
    public class NormalizingCopyActionDecorator implements CopyAction {
    
        private final CopyAction delegate;
        private final Chmod chmod;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 01 10:41:40 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  6. pilot/pkg/xds/pushqueue.go

    	defer p.cond.L.Unlock()
    	return len(p.queue)
    }
    
    // ShutDown will cause queue to ignore all new items added to it. As soon as the
    // worker goroutines have drained the existing items in the queue, they will be
    // instructed to exit.
    func (p *PushQueue) ShutDown() {
    	p.cond.L.Lock()
    	defer p.cond.L.Unlock()
    	p.shuttingDown = true
    	p.cond.Broadcast()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 16 01:37:15 UTC 2021
    - 3.8K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet_pods_test.go

    				}
    			},
    			expectMetrics: map[string]string{
    				metrics.DesiredPodCount.FQName(): `# HELP kubelet_desired_pods [ALPHA] The number of pods the kubelet is being instructed to run. static is true if the pod is not from the apiserver.
    				# TYPE kubelet_desired_pods gauge
    				kubelet_desired_pods{static=""} 0
    				kubelet_desired_pods{static="true"} 0
    				`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  8. pkg/kubelet/metrics/metrics.go

    	DesiredPodCount = metrics.NewGaugeVec(
    		&metrics.GaugeOpts{
    			Subsystem:      KubeletSubsystem,
    			Name:           DesiredPodCountKey,
    			Help:           "The number of pods the kubelet is being instructed to run. static is true if the pod is not from the apiserver.",
    			StabilityLevel: metrics.ALPHA,
    		},
    		[]string{"static"},
    	)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 15:13:25 UTC 2024
    - 45.6K bytes
    - Viewed (0)
  9. src/cmd/dist/build.go

    	}
    
    	if distpack {
    		xprintf("Packaging archives for %s/%s.\n", goos, goarch)
    		run("", ShowOutput|CheckExit, pathf("%s/distpack", tooldir))
    	}
    
    	// Print trailing banner unless instructed otherwise.
    	if !noBanner {
    		banner()
    	}
    }
    
    func wrapperPathFor(goos, goarch string) string {
    	switch {
    	case goos == "android":
    		if gohostos != "android" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  10. okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/DerReader.kt

      }
    
      fun readOctetString(): ByteString {
        if (bytesLeft == -1L || constructed) {
          throw ProtocolException("constructed octet strings not supported for DER")
        }
        return source.readByteString(bytesLeft)
      }
    
      fun readUtf8String(): String {
        if (bytesLeft == -1L || constructed) {
          throw ProtocolException("constructed strings not supported for DER")
        }
        return source.readUtf8(bytesLeft)
      }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 10.5K bytes
    - Viewed (0)
Back to top