Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 137 for paused (0.12 sec)

  1. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintController.kt

            }
    
            override fun pause(): WritingState {
                removeListener(fingerprintWriter)
                return Paused(fingerprintWriter, buildScopedSpoolFile, projectScopedSpoolFile)
            }
    
            override fun dispose() =
                pause().dispose()
        }
    
        private
        inner class Paused(
            private val fingerprintWriter: ConfigurationCacheFingerprintWriter,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  2. pkg/kubelet/container/runtime.go

    	ImageRef string
    	// Runtime handler used to pull the image if any.
    	ImageRuntimeHandler string
    	// Hash of the container, used for comparison. Optional for containers
    	// not managed by kubelet.
    	Hash uint64
    	// State is the state of the container.
    	State State
    }
    
    // PodStatus represents the status of the pod and its containers.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	cacheInterval, err = c.watchCache.getAllEventsSinceLocked(requiredResourceVersion, key, opts)
    	if err != nil {
    		// To match the uncached watch implementation, once we have passed authn/authz/admission,
    		// and successfully parsed a resource version, other errors must fail with a watch event of type ERROR,
    		// rather than a directly returned error.
    		return newErrWatcher(err), nil
    	}
    
    	addedWatcher := false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/passes.h

    // Groups ops into functions that only contain one dialect.
    std::unique_ptr<Pass> CreateGroupByDialectPass();
    
    // Removes unused parameters from functions & their callers.
    std::unique_ptr<OperationPass<ModuleOp>> CreateRemoveUnusedArgumentsPass();
    
    // Removes unused results from WhileRegion ops.
    std::unique_ptr<OperationPass<func::FuncOp>>
    CreateRemoveUnusedWhileResultsPass();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/util/concurrent/TestThread.java

      }
    
      /**
       * Asserts that a prior call that had caused this thread to block or wait has since returned
       * normally.
       */
      public void assertPriorCallReturns(@Nullable String methodName) throws Exception {
        assertEquals(null, getResponse(methodName).getResult());
      }
    
      /**
       * Asserts that a prior call that had caused this thread to block or wait has since returned the
       * expected boolean value.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/initialization/ConfigurationCacheProblemsListener.kt

            // It is possible that another task is being executed now and causes `task` to be configured.
            // In this case, we shouldn't attribute the error to the `task` alone, as it can be misleading,
            // and that usage can be benign. This is especially important when the currently running task is
            // marked as `notCompatibleWithConfigurationCache` - attributing the error to `task` will cause
            // the build to fail when it really shouldn't.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/util/concurrent/TestThread.java

      }
    
      /**
       * Asserts that a prior call that had caused this thread to block or wait has since returned
       * normally.
       */
      public void assertPriorCallReturns(@Nullable String methodName) throws Exception {
        assertEquals(null, getResponse(methodName).getResult());
      }
    
      /**
       * Asserts that a prior call that had caused this thread to block or wait has since returned the
       * expected boolean value.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  8. pilot/pkg/bootstrap/options.go

    	KeyFile         string
    	TLSCipherSuites []string
    	CipherSuits     []uint16 // This is the parsed cipher suites
    }
    
    var (
    	PodNamespace = env.Register("POD_NAMESPACE", constants.IstioSystemNamespace, "").Get()
    	PodName      = env.Register("POD_NAME", "", "").Get()
    	JwtRule      = env.Register("JWT_RULE", "",
    		"The JWT rule used by istiod authentication").Get()
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  9. src/os/signal/doc.go

    before raising the signal.
    
    # Windows
    
    On Windows a ^C (Control-C) or ^BREAK (Control-Break) normally cause
    the program to exit. If Notify is called for [os.Interrupt], ^C or ^BREAK
    will cause [os.Interrupt] to be sent on the channel, and the program will
    not exit. If Reset is called, or Stop is called on all channels passed
    to Notify, then the default behavior will be restored.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:11:00 UTC 2024
    - 11K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/EdgeState.java

        }
    
        void markUsed() {
            this.used = true;
        }
    
        void markUnused() {
            this.used = false;
        }
    
        /**
         * Indicates whether the edge is currently listed as outgoing in a node.
         * It can be either a full edge or an edge to a virtual platform.
         *
         * @return true if used, false otherwise
         */
        boolean isUsed() {
            return used;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 18.1K bytes
    - Viewed (0)
Back to top