Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 34 for light (0.06 sec)

  1. pkg/kubelet/eviction/eviction_manager_test.go

    	}
    
    	// we should have memory pressure
    	if !manager.IsUnderMemoryPressure() {
    		t.Errorf("Manager should report memory pressure since soft threshold was met")
    	}
    
    	// verify the right pod was killed with the right grace period.
    	if podKiller.pod != podToEvict {
    		t.Errorf("Manager chose to kill pod: %v, but should have chosen %v", podKiller.pod.Name, podToEvict.Name)
    	}
    	if podKiller.gracePeriodOverride == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/s390x/asmz.go

    	op_SRA     uint32 = 0x8A00 // FORMAT_RS1        SHIFT RIGHT SINGLE (32)
    	op_SRAG    uint32 = 0xEB0A // FORMAT_RSY1       SHIFT RIGHT SINGLE (64)
    	op_SRAK    uint32 = 0xEBDC // FORMAT_RSY1       SHIFT RIGHT SINGLE (32)
    	op_SRDA    uint32 = 0x8E00 // FORMAT_RS1        SHIFT RIGHT DOUBLE
    	op_SRDL    uint32 = 0x8C00 // FORMAT_RS1        SHIFT RIGHT DOUBLE LOGICAL
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  3. src/net/http/server.go

    // size is anyway.  (if we have the bytes on the machine, we might as
    // well read them)
    const maxPostHandlerReadBytes = 256 << 10
    
    func checkWriteHeaderCode(code int) {
    	// Issue 22880: require valid WriteHeader status codes.
    	// For now we only enforce that it's three digits.
    	// In the future we might block things over 599 (600 and above aren't defined
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  4. src/runtime/proc.go

    // casgstatus(gp, oldstatus, Gcopystack), assuming oldstatus is Gwaiting or Grunnable.
    // Returns old status. Cannot call casgstatus directly, because we are racing with an
    // async wakeup that might come in from netpoll. If we see Gwaiting from the readgstatus,
    // it might have become Grunnable by the time we get to the cas. If we called casgstatus,
    // it would loop waiting for the status to go back to Gwaiting, which it never will.
    //
    //go:nosplit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  5. pkg/scheduler/schedule_one_test.go

    				"pods":            *resource.NewQuantity(100, resource.DecimalSI),
    			},
    			Images: images,
    		},
    	}
    }
    
    // queuedPodStore: pods queued before processing.
    // cache: scheduler cache that might contain assumed pods.
    func setupTestSchedulerWithOnePodOnNode(ctx context.Context, t *testing.T, queuedPodStore *clientcache.FIFO, scache internalcache.Cache,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/ppc64/asm9.go

    // a more efficient sequence of instructions if a prefixed version exists (ex. paddi instead of oris/ori/add).
    //
    // This table is meant to transform all sequences which might be TOC-relative into an equivalent PC-relative
    // sequence. It also encompasses several transformations which do not involve relocations, those could be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/arm64/asm7.go

    	y += x
    	return (y-1)&y == 0
    }
    
    // bitconEncode returns the encoding of a bitcon used in logical instructions
    // x is known to be a bitcon
    // a bitcon is a sequence of n ones at low bits (i.e. 1<<n-1), right rotated
    // by R bits, and repeated with period of 64, 32, 16, 8, 4, or 2.
    // it is encoded in logical instructions with 3 bitfields
    // N (1 bit) : R (6 bits) : S (6 bits), where
    // N=1           -- period=64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  8. src/cmd/go/internal/load/pkg.go

    		p.CXXFiles = nil
    		p.MFiles = nil
    		p.SwigFiles = nil
    		p.SwigCXXFiles = nil
    		// Note that SFiles are okay (they go to the Go assembler)
    		// and HFiles are okay (they might be used by the SFiles).
    		// Also Sysofiles are okay (they might not contain object
    		// code; see issue #16050).
    	}
    
    	// The gc toolchain only permits C source files with cgo or SWIG.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/data.go

    	// as normal symbols, and give them a little size.
    	//
    	// On AIX, as all DATA sections are merged together, ld might not put
    	// these symbols at the beginning of their respective section if there
    	// aren't real symbols, their alignment might not match the
    	// first symbol alignment. Therefore, there are explicitly put at the
    	// beginning of their section with the same alignment.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet.go

    		if err != nil {
    			klog.InfoS("Unprivileged containerized plugins might not work, could not set selinux context on plugin registration dir", "path", pluginRegistrationDir, "err", err)
    		}
    		err = selinux.SetFileLabel(pluginsDir, config.KubeletPluginsDirSELinuxLabel)
    		if err != nil {
    			klog.InfoS("Unprivileged containerized plugins might not work, could not set selinux context on plugins dir", "path", pluginsDir, "err", err)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
Back to top