Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 681 for isInitialized (0.27 sec)

  1. pkg/kubelet/secret/fake_manager.go

    	return &fakeManager{
    		secrets: secrets,
    	}
    }
    
    // GetSecret function returns the searched secret if it was provided during the manager initialization, otherwise, it returns an error.
    // If the manager was initialized without any secrets, it returns a nil secret."
    func (s *fakeManager) GetSecret(namespace, name string) (*v1.Secret, error) {
    	if s.secrets == nil {
    		return nil, nil
    	}
    
    	for _, secret := range s.secrets {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 11 09:33:14 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. testing/internal-testing/src/main/groovy/org/gradle/util/SetSystemProperties.java

                if (customProperties.containsKey(immutableProperty)) {
                    throw new IllegalArgumentException("'" + immutableProperty + "' should not be set via a rule as its value cannot be changed once it is initialized");
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. maven-model-builder/src/main/java/org/apache/maven/utils/Os.java

         */
        private static final String DARWIN = "darwin";
    
        static {
            // Those two public constants are initialized here, as they need all the private constants
            // above to be initialized first, but the code style imposes the public constants to be
            // defined above the private ones...
            OS_FAMILY = getOsFamily();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  4. src/go/types/objset.go

    // object name.
    
    package types
    
    // An objset is a set of objects identified by their unique id.
    // The zero value for objset is a ready-to-use empty objset.
    type objset map[string]Object // initialized lazily
    
    // insert attempts to insert an object obj into objset s.
    // If s already contains an alternative object alt with
    // the same name, insert leaves s unchanged and returns alt.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 1K bytes
    - Viewed (0)
  5. src/plugin/plugin.go

    //
    //	go build -buildmode=plugin
    //
    // When a plugin is first opened, the init functions of all packages not
    // already part of the program are called. The main function is not run.
    // A plugin is only initialized once, and cannot be closed.
    //
    // # Warnings
    //
    // The ability to dynamically load parts of an application during
    // execution, perhaps based on user-defined configuration, may be a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 19:46:10 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  6. pkg/ctrlz/options.go

    	Port uint16
    
    	// The IP address to listen on for ctrlz.
    	Address string
    
    	// If true, pprof will be enabled
    	EnablePprof bool
    }
    
    // DefaultOptions returns a new set of options, initialized to the defaults
    func DefaultOptions() *Options {
    	return &Options{
    		Port:    9876,
    		Address: "localhost",
    	}
    }
    
    // AttachCobraFlags attaches a set of Cobra flags to the given Cobra command.
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 11 21:42:29 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/saved_model/core/revived_types/constant.h

    #include "tensorflow/c/tensor_interface.h"
    #include "tensorflow/core/framework/tensor.pb.h"
    
    namespace tensorflow {
    
    // This class corresponds to python's tf.constant, which is effectively a
    // TensorHandle explicitly initialized to some value.
    // For now this doesn't do much beyond wrap Context's CreateLocalHandle method,
    // and offer a subclass of TensorHandleConvertible. Note that similar to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 30 19:43:25 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  8. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/profile/Os.java

         * The path separator.
         */
        private static final String PATH_SEP = System.getProperty("path.separator");
    
        static {
            // Those two public constants are initialized here, as they need all the private constants
            // above to be initialized first, but the code style imposes the public constants to be
            // defined above the private ones...
            OS_FAMILY = getOsFamily();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  9. pkg/kubelet/status/generate.go

    			Status: v1.ConditionTrue,
    			Reason: PodCompleted,
    		}
    	}
    
    	// If there is any regular container that has started, then the pod has
    	// been initialized before.
    	// This is needed to handle the case where the pod has been initialized but
    	// the restartable init containers are restarting.
    	if kubecontainer.HasAnyRegularContainerStarted(spec, containerStatuses) {
    		return v1.PodCondition{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 12 15:18:11 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  10. guava/src/com/google/common/util/concurrent/LazyLogger.java

    import com.google.common.annotations.GwtCompatible;
    import java.util.logging.Logger;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /** A holder for a {@link Logger} that is initialized only when requested. */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    final class LazyLogger {
      private final String loggerName;
      private volatile @Nullable Logger logger;
    
      LazyLogger(Class<?> ownerOfLogger) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Dec 13 19:45:20 UTC 2023
    - 1.9K bytes
    - Viewed (0)
Back to top