Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 329 for isInitialized (0.2 sec)

  1. android/guava/src/com/google/common/collect/ObjectCountHashMap.java

      static final int DEFAULT_SIZE = 3;
    
      // used to indicate blank table entries
      static final int UNSET = -1;
    
      /*
       * The array fields below are not initialized directly in the constructor, but they're initialized
       * by init(), which the constructor calls.
       */
    
      /** The keys of the entries in the map. */
      transient @Nullable Object[] keys;
    
      /** The values of the entries in the map. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 01 22:07:10 UTC 2021
    - 15K bytes
    - Viewed (0)
  2. src/runtime/mgcstack.go

    	// list of stack objects
    	// Objects are in increasing address order.
    	head  *stackObjectBuf
    	tail  *stackObjectBuf
    	nobjs int
    
    	// root of binary tree for fast object lookup by address
    	// Initialized by buildIndex.
    	root *stackObject
    }
    
    // Add p as a potential pointer to a stack object.
    // p must be a stack address.
    func (s *stackScanState) putPtr(p uintptr, conservative bool) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 21 21:06:52 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  3. cmd/sts-handlers.go

    		if err != nil {
    			writeSTSErrorResponse(ctx, w, ErrSTSInvalidParameterValue,
    				fmt.Errorf("Error processing %s parameter: %v", stsRoleArn, err))
    			return
    		}
    	}
    
    	if !globalIAMSys.Initialized() {
    		writeSTSErrorResponse(ctx, w, ErrSTSIAMNotInitialized, errIAMNotInitialized)
    		return
    	}
    
    	// Validate JWT; check clientID in claims matches the one associated with the roleArn
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  4. cmd/metrics.go

    // Populates prometheus with bucket usage metrics, this metrics
    // is only enabled if scanner is enabled.
    func bucketUsageMetricsPrometheus(ch chan<- prometheus.Metric) {
    	objLayer := newObjectLayerFn()
    	// Service not initialized yet
    	if objLayer == nil {
    		return
    	}
    
    	dataUsageInfo, err := loadDataUsageFromBackend(GlobalContext, objLayer)
    	if err != nil {
    		return
    	}
    	// data usage has not captured any data yet.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  5. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/MavenConversionIntegrationTest.groovy

            failure.assertHasCause("There were failing tests.")
        }
    
        def 'sourcesJar'() {
            def rootBuildFile = dslFixtureFor(scriptDsl).getBuildFile()
    
            when: 'build is initialized'
            run 'init', '--dsl', scriptDsl.id as String
    
            then: 'sourcesJar task configuration is generated'
            rootBuildFile.text.contains(TextUtil.toPlatformLineSeparators('''
                java {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 14 15:23:34 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/StandardTable.java

           * initialized by next() -- which initializes rowEntry, too.
           *
           * - rowEntry isn't cleared except below. If it was cleared below, then either
           *   columnIterator.remove() would have failed above (if the user hasn't called next() since
           *   then) or rowEntry would have been initialized by next() (as discussed above).
           */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 30.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/xla_launch_util_gpu_test.cc

                          const gtl::ArraySlice<T> data) {
        Tensor* init_var_value = CreateDeviceTensor<T>(shape, data);
        Var* var = new Var(DataTypeToEnum<T>::v());
        *var->tensor() = *init_var_value;
        var->is_initialized = true;
    
        return var;
      }
    
      // Creates a Variable, adds it to the resource manager and also adds it as one
      // of the inputs in the context_
      template <typename T>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 10K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/StandardTable.java

           * initialized by next() -- which initializes rowEntry, too.
           *
           * - rowEntry isn't cleared except below. If it was cleared below, then either
           *   columnIterator.remove() would have failed above (if the user hasn't called next() since
           *   then) or rowEntry would have been initialized by next() (as discussed above).
           */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 29.8K bytes
    - Viewed (0)
  9. src/embed/embed.go

    //
    // # Strings and Bytes
    //
    // The //go:embed line for a variable of type string or []byte can have only a single pattern,
    // and that pattern can match only a single file. The string or []byte is initialized with
    // the contents of that file.
    //
    // The //go:embed directive requires importing "embed", even when using a string or []byte.
    // In source files that don't refer to [embed.FS], use a blank import (import _ "embed").
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 19:42:51 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/volumebinding/volume_binding.go

    	maxUtilization = 100
    )
    
    // the state is initialized in PreFilter phase. because we save the pointer in
    // framework.CycleState, in the later phases we don't need to call Write method
    // to update the value
    type stateData struct {
    	allBound bool
    	// podVolumesByNode holds the pod's volume information found in the Filter
    	// phase for each node
    	// it's initialized in the PreFilter phase
    	podVolumesByNode map[string]*PodVolumes
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 14:13:06 UTC 2024
    - 16.4K bytes
    - Viewed (0)
Back to top