Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 687 for isInitialized (0.19 sec)

  1. tensorflow/compiler/jit/get_compiler_ir.cc

          arg.definition_stack_trace = variable.definition_stack_trace();
          TF_RET_CHECK(variable.var() && variable.var()->is_initialized);
          const Tensor* value = variable.var()->tensor();
          arg.type = value->dtype();
          arg.shape = value->shape();
          arg.initialized = true;
        } else {
          // Instead of embedding constant into HLO,
          // we handle tf.constant as parameter to reduce size.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 19K bytes
    - Viewed (0)
  2. pkg/securitycontext/accessors.go

    // May be initialized with a nil PodSecurityContext.
    func NewPodSecurityContextAccessor(podSC *api.PodSecurityContext) PodSecurityContextAccessor {
    	return &podSecurityContextWrapper{podSC: podSC}
    }
    
    // NewPodSecurityContextMutator returns a mutator for the given pod security context.
    // May be initialized with a nil PodSecurityContext.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 22 16:15:27 UTC 2023
    - 14.4K 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. maven-slf4j-provider/src/main/java/org/apache/maven/slf4j/MavenServiceProvider.java

            return mdcAdapter;
        }
    
        @Override
        public String getRequestedApiVersion() {
            return REQUESTED_API_VERSION;
        }
    
        @Override
        public void initialize() {
            // already initialized
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 09 06:36:58 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top