Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 29 for cleanAll (0.12 sec)

  1. okhttp/src/main/kotlin/okhttp3/internal/http2/Http2Stream.kt

       */
      inner class FramingSource internal constructor(
        /** Maximum number of bytes to buffer before reporting a flow control error. */
        private val maxByteCount: Long,
        /**
         * True if either side has cleanly shut down this stream. We will receive no more bytes beyond
         * those already in the buffer.
         */
        internal var finished: Boolean,
      ) : Source {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/transforms/xla_legalize_tf.cc

    // Patterns whose root op is in the set `include_ops` are moved from the set
    // `from` to the returned set. This is used to partition patterns by op so they
    // can be cleanly migrated from the old bridge to the MLIR bridge.
    RewritePatternSet PatternsIncludeOps(RewritePatternSet &from) {
      RewritePatternSet to(from.getContext());
      // Filter NativePatterns.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/openapi/controller.go

    				V2:                      true,
    				IncludeSelectableFields: utilfeature.DefaultFeatureGate.Enabled(apiextensionsfeatures.CustomResourceFieldSelectors),
    			})
    			// Defaults must be pruned here for CRDs to cleanly merge with the static
    			// spec that already has defaults pruned
    			if err != nil {
    				return nil, "", err
    			}
    			s.Definitions = handler.PruneDefaults(s.Definitions)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/server/DaemonStateCoordinatorTest.groovy

            }
    
            and:
            stopped
    
            and:
            1 * onStartCommand.run()
            0 * _._
        }
    
        def "multiple stop requests are handled cleanly"() {
            Runnable command = Mock()
    
            when:
            coordinator.runCommand(command, "some command")
    
            then:
            1 * command.run() >> {
                assert busy
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 05 22:24:02 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  5. pilot/pkg/model/endpointshards.go

    	for svc, shardsByNamespace := range e.shardsBySvc {
    		for ns := range shardsByNamespace {
    			e.deleteServiceInner(shardKey, svc, ns, false)
    		}
    	}
    	if e.cache == nil {
    		return
    	}
    	e.cache.ClearAll()
    }
    
    // must be called with lock
    func (e *EndpointIndex) deleteServiceInner(shard ShardKey, serviceName, namespace string, preserveKeys bool) {
    	if e.shardsBySvc[serviceName] == nil ||
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/cmd/config.go

    		// Without this callback, if a user runs just the "upload"
    		// command without a subcommand, or with an invalid subcommand,
    		// cobra will print usage information, but still exit cleanly.
    		// We want to return an error code in these cases so that the
    		// user knows that their command was invalid.
    		Run: cmdutil.SubCmdRun(),
    	}
    
    	options.AddKubeConfigFlag(cmd.PersistentFlags(), &kubeConfigFile)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  7. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/DefaultFileLockManager.java

            private void assertOpenAndIntegral() {
                assertOpen();
                if (lockState.isDirty()) {
                    throw new FileIntegrityViolationException(String.format("The file '%s' was not unlocked cleanly", target));
                }
            }
    
            @Override
            public void close() {
                CompositeStoppable stoppable = new CompositeStoppable();
                stoppable.add((Stoppable) () -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:32 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/cmd/token.go

    		`),
    
    		// Without this callback, if a user runs just the "token"
    		// command without a subcommand, or with an invalid subcommand,
    		// cobra will print usage information, but still exit cleanly.
    		// We want to return an error code in these cases so that the
    		// user knows that their command was invalid.
    		Run: cmdutil.SubCmdRun(),
    	}
    
    	options.AddKubeConfigFlag(tokenCmd.PersistentFlags(), &kubeConfigFile)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 05:47:48 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/controller.go

    	queue      *workqueue.Typed[string]
    	workLock   sync.Mutex
    	work       map[string][]*admissionWaiter
    	dirtyWork  map[string][]*admissionWaiter
    	inProgress sets.String
    
    	// controls the run method so that we can cleanly conform to the Evaluator interface
    	workers int
    	stopCh  <-chan struct{}
    	init    sync.Once
    
    	// lets us know what resources are limited by default
    	config *resourcequotaapi.Configuration
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  10. src/testing/fuzz.go

    			}
    			// Before resetting the current coverage, defer the snapshot so that
    			// we make sure it is called right before the tRunner function
    			// exits, regardless of whether it was executed cleanly, panicked,
    			// or if the fuzzFn called t.Fatal.
    			if f.testContext.isFuzzing {
    				defer f.fuzzContext.deps.SnapshotCoverage()
    				f.fuzzContext.deps.ResetCoverage()
    			}
    			fn.Call(args)
    		})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 22.9K bytes
    - Viewed (0)
Back to top