Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 59 of 59 for GETs (0.03 sec)

  1. hack/ginkgo-e2e.sh

    export PATH
    
    # Choose the program to execute and additional arguments for it.
    #
    # Note that the e2e.test binary must have been built with "make DBG=1"
    # when using debuggers, otherwise debug information gets stripped.
    case "${E2E_TEST_DEBUG_TOOL:-ginkgo}" in
      ginkgo)
        program=("${ginkgo}")
        if [[ -n "${GINKGO_PARALLEL_NODES:-}" ]]; then
          program+=("--nodes=${GINKGO_PARALLEL_NODES}")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 13:25:50 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  2. pkg/volume/flexvolume/plugin.go

    }
    
    // RequiresRemount is part of the volume.VolumePlugin interface.
    func (plugin *flexVolumePlugin) RequiresRemount(spec *volume.Spec) bool {
    	return false
    }
    
    // GetAccessModes gets the allowed access modes for this plugin.
    func (plugin *flexVolumePlugin) GetAccessModes() []api.PersistentVolumeAccessMode {
    	return []api.PersistentVolumeAccessMode{
    		api.ReadWriteOnce,
    		api.ReadOnlyMany,
    	}
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  3. src/hash/crc32/crc32.go

    func Update(crc uint32, tab *Table, p []byte) uint32 {
    	// Unfortunately, because IEEETable is exported, IEEE may be used without a
    	// call to MakeTable. We have to make sure it gets initialized in that case.
    	return update(crc, tab, p, true)
    }
    
    func (d *digest) Write(p []byte) (n int, err error) {
    	// We only create digest objects through New() which takes care of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 12 05:36:29 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/stablehlo/transforms/composite_avg_pool.cc

          const bool is_counted_in_original_input = row_in_bound && col_in_bound;
    
          res += is_counted_in_original_input;
        }
      }
      return res;
    }
    
    // Gets a matrix which corrects the overcounting of divisors when casting a
    // average pool with ceil mode true as one with ceil mode false on a padded
    // tensor.
    DenseFPElementsAttr GetCorrectionMatrix(Builder& builder, CompositeOp op) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 23:16:05 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  5. cmd/veeam-sos-api.go

    //     higher task limit).
    //
    //     <S3ConcurrentTaskLimit>
    //
    //   - Defines how many S3 operations are executed parallel within one Repository Task Slot (and within one backup object
    //     that gets offloaded). The same registry key setting overwrites the storage-defined setting.
    //     Optional value, default 64, range: 1-unlimited
    //
    //   - <S3MultiObjectDeleteLimit>
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 20 18:54:52 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  6. src/runtime/coro.go

    	}
    
    	// The goroutine stored in c is the one to run next.
    	// Swap it with ourselves.
    	var gnext *g
    	for {
    		// Note: this is a racy load, but it will eventually
    		// get the right value, and if it gets the wrong value,
    		// the c.gp.cas will fail, so no harm done other than
    		// a wasted loop iteration.
    		// The cas will also sync c.gp's
    		// memory enough that the next iteration of the racy load
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:09:18 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/plugins/tainttoleration/taint_toleration.go

    // there is no need for that.
    func (s *preScoreState) Clone() framework.StateData {
    	return s
    }
    
    // getAllTolerationEffectPreferNoSchedule gets the list of all Tolerations with Effect PreferNoSchedule or with no effect.
    func getAllTolerationPreferNoSchedule(tolerations []v1.Toleration) (tolerationList []v1.Toleration) {
    	for _, toleration := range tolerations {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  8. src/sync/pool.go

    		return x
    	}
    	for i := 0; i < int(size); i++ {
    		l := indexLocal(locals, (pid+i)%int(size))
    		if x, _ := l.shared.popTail(); x != nil {
    			return x
    		}
    	}
    
    	// Mark the victim cache as empty for future gets don't bother
    	// with it.
    	atomic.StoreUintptr(&p.victimSize, 0)
    
    	return nil
    }
    
    // pin pins the current goroutine to P, disables preemption and
    // returns poolLocal pool for the P and the P's id.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  9. src/runtime/mksizeclasses.go

    //
    // See malloc.go for overview.
    //
    // The size classes are chosen so that rounding an allocation
    // request up to the next size class wastes at most 12.5% (1.125x).
    //
    // Each size class has its own page count that gets allocated
    // and chopped up when new objects of the size class are needed.
    // That page count is chosen so that chopping up the run of
    // pages into objects of the given size wastes at most 12.5% (1.125x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:31:27 UTC 2024
    - 9.6K bytes
    - Viewed (0)
Back to top