Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 40 for SWAP (0.06 sec)

  1. src/sync/atomic/atomic_test.go

    		func() { SwapInt32(nil, 0) },
    		func() { (*Int32)(nil).Swap(0) },
    		func() { SwapUint32(nil, 0) },
    		func() { (*Uint32)(nil).Swap(0) },
    		func() { SwapInt64(nil, 0) },
    		func() { (*Int64)(nil).Swap(0) },
    		func() { SwapUint64(nil, 0) },
    		func() { (*Uint64)(nil).Swap(0) },
    		func() { SwapUintptr(nil, 0) },
    		func() { (*Uintptr)(nil).Swap(0) },
    		func() { SwapPointer(nil, nil) },
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 71.4K bytes
    - Viewed (0)
  2. hack/local-up-cluster.sh

          ${KUBELET_FLAGS}
        )
    
        # warn if users are running with swap allowed
        if [ "${FAIL_SWAP_ON}" == "false" ]; then
            echo "WARNING : The kubelet is configured to not fail even if swap is enabled; production deployments should disable swap unless testing NodeSwap feature."
        fi
    
        if [[ "${REUSE_CERTS}" != true ]]; then
            # clear previous dynamic certs
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/S390XOps.go

    		{name: "MOVWBR", argLength: 1, reg: gp11, asm: "MOVWBR"}, // arg0 swap bytes
    		{name: "MOVDBR", argLength: 1, reg: gp11, asm: "MOVDBR"}, // arg0 swap bytes
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 52.5K bytes
    - Viewed (0)
  4. pkg/kubelet/stats/cri_stats_provider_test.go

    	if runtime.GOOS != "linux" {
    		return
    	}
    
    	assert.Equal(cs.Timestamp.UnixNano(), actual.Swap.Time.UnixNano())
    	assert.Equal(cs.Memory.Swap, *actual.Swap.SwapUsageBytes)
    }
    
    func checkCRIPodCPUAndMemoryStatsStrictlyFromCRI(assert *assert.Assertions, actual statsapi.PodStats, excepted statsapi.PodStats) {
    	if runtime.GOOS != "linux" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  5. pkg/kubelet/eviction/helpers.go

    	return &multiSorter{
    		cmp: cmp,
    	}
    }
    
    // Len is part of sort.Interface.
    func (ms *multiSorter) Len() int {
    	return len(ms.pods)
    }
    
    // Swap is part of sort.Interface.
    func (ms *multiSorter) Swap(i, j int) {
    	ms.pods[i], ms.pods[j] = ms.pods[j], ms.pods[i]
    }
    
    // Less is part of sort.Interface.
    func (ms *multiSorter) Less(i, j int) bool {
    	p1, p2 := ms.pods[i], ms.pods[j]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/css/javadoc.css

         url("https://assets.gradle.com/lato/fonts/lato-normal/lato-normal.woff") format("woff");
     }
     /* Lato (normal, italic) */
     @font-face {
         font-display: swap;
         font-family: Lato;
         font-weight: 400;
         font-style: italic;
         src: url("https://assets.gradle.com/lato/fonts/lato-normal-italic/lato-normal-italic.woff2") format("woff2"),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 14:25:49 UTC 2024
    - 50.5K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/route/route.go

    		return false
    	} else if b[j] == nil || b[j].Header == nil {
    		return true
    	}
    	return strings.Compare(b[i].Header.Key, b[j].Header.Key) < 0
    }
    
    // Swap is in the sort.Interface for SortHeaderValueOption
    func (b SortHeaderValueOption) Swap(i, j int) {
    	b[i], b[j] = b[j], b[i]
    }
    
    // translateAppendHeaders translates headers
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  8. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    	if len(taintsToAdd) == 0 && len(taintsToDel) == 0 {
    		return nil
    	}
    	if !controllerutil.SwapNodeControllerTaint(ctx, nc.kubeClient, taintsToAdd, taintsToDel, node) {
    		return fmt.Errorf("failed to swap taints of node %+v", node)
    	}
    	return nil
    }
    
    func (nc *Controller) doNoExecuteTaintingPass(ctx context.Context) {
    	// Extract out the keys of the map in order to not hold
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/css/manual.css

    @font-face {
    	font-display: swap;
    	font-family: Lato;
    	font-weight: 400;
    	font-style: italic;
    	src: url("https://assets.gradle.com/lato/fonts/lato-normal-italic/lato-normal-italic.woff2") format("woff2"),
    		url("https://assets.gradle.com/lato/fonts/lato-normal-italic/lato-normal-italic.woff") format("woff");
    }
    
    /* Lato (bold, regular) */
    @font-face {
    	font-display: swap;
    	font-family: Lato;
    	font-weight: 500;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		{name: "LoweredAtomicAdd32Variant", argLength: 3, reg: gpxchg, resultNotInArgs: true, faultOnNilArg0: true, hasSideEffects: true},
    
    		// atomic compare and swap.
    		// arg0 = pointer, arg1 = old value, arg2 = new value, arg3 = memory. auxint must be zero.
    		// if *arg0 == arg1 {
    		//   *arg0 = arg2
    		//   return (true, memory)
    		// } else {
    		//   return (false, memory)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
Back to top