Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 706 for light (0.13 sec)

  1. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/rest.go

    }
    
    // dedupOwnerReferences dedups owner references over the entire entry.
    // NOTE: We don't know enough about the existing cases of owner references
    // sharing the same UID but different fields. Nor do we know what might break.
    // In the future we may just dedup/reject owner references with the same UID.
    func dedupOwnerReferences(refs []metav1.OwnerReference) ([]metav1.OwnerReference, []string) {
    	var result []metav1.OwnerReference
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 17K bytes
    - Viewed (0)
  2. src/time/tick_test.go

    	Sleep(sched)
    	waitDone(done)
    	tim.Stop()
    	close(stop)
    	waitDone(done1)
    	waitDone(done2)
    	if isTicker {
    		// extra send might have sent done again
    		// (handled by buffering done above).
    		select {
    		default:
    		case <-done:
    		}
    		// extra send after that might have filled C.
    		select {
    		default:
    		case <-C:
    		}
    	}
    	notDone(done)
    
    	// Test enqueueTimerChan when timer is stopped.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:10:37 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/endpointslice.go

    	// and the IP may be shared by many pods. Best we can do is guess.
    	pods := c.pods.getPodsByIP(ip)
    	for _, p := range pods {
    		if p.Namespace == namespace {
    			// Might not be right, but best we can do.
    			return p
    		}
    	}
    	return nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  4. src/cmd/cover/cover_test.go

    	cmd = testenv.Command(t, testenv.GoToolPath(t), "run", tmpTestMain, coverOutput)
    	run(cmd, t)
    
    	file, err = os.ReadFile(coverOutput)
    	if err != nil {
    		t.Fatal(err)
    	}
    	// compiler directive must appear right next to function declaration.
    	if got, err := regexp.MatchString(".*\n//go:nosplit\nfunc someFunction().*", string(file)); err != nil || !got {
    		t.Error("misplaced compiler directive")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 07 16:54:28 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  5. src/cmd/go/internal/cfg/cfg.go

    	goroot := findGOROOT(envCache.m["GOROOT"])
    	if goroot != "" {
    		readEnvFile(filepath.Join(goroot, "go.env"), "GOROOT")
    	}
    
    	// Save the goroot for func init calling SetGOROOT,
    	// and also overwrite anything that might have been in go.env.
    	// It makes no sense for GOROOT/go.env to specify
    	// a different GOROOT.
    	envCache.m["GOROOT"] = goroot
    }
    
    func readEnvFile(file string, source string) {
    	if file == "" {
    		return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/bpxsvc_zos.go

    	PT_FPC                  = 32  // Floating point control register
    	PT_PSW                  = 40  // PSW
    	PT_PSW0                 = 40  // Left half of the PSW
    	PT_PSW1                 = 41  // Right half of the PSW
    	PT_CR0                  = 42  // Control register 0
    	PT_CR1                  = 43  // Control register 1
    	PT_CR2                  = 44  // Control register 2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  7. src/fmt/doc.go

    character, U+FFFD, as in [strconv.QuoteRune].
    
    Other flags:
    
    	'+'	always print a sign for numeric values;
    		guarantee ASCII-only output for %q (%+q)
    	'-'	pad with spaces on the right rather than the left (left-justify the field)
    	'#'	alternate format: add leading 0b for binary (%#b), 0 for octal (%#o),
    		0x or 0X for hex (%#x or %#X); suppress 0x for %p (%#p);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  8. src/go/types/api.go

    func (tv TypeAndValue) Addressable() bool {
    	return tv.mode == variable
    }
    
    // Assignable reports whether the corresponding expression
    // is assignable to (provided a value of the right type).
    func (tv TypeAndValue) Assignable() bool {
    	return tv.mode == variable || tv.mode == mapindex
    }
    
    // HasOk reports whether the corresponding expression may be
    // used on the rhs of a comma-ok assignment.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  9. src/internal/xcoff/file.go

    		nsyms = fhdr.Fnsyms
    		opthdr = fhdr.Fopthdr
    		hdrsz = FILHSZ_64
    	}
    
    	if symptr == 0 || nsyms <= 0 {
    		return nil, fmt.Errorf("no symbol table")
    	}
    
    	// Read string table (located right after symbol table).
    	offset := symptr + uint64(nsyms)*SYMESZ
    	if _, err := sr.Seek(int64(offset), io.SeekStart); err != nil {
    		return nil, err
    	}
    	// The first 4 bytes contain the length (in bytes).
    	var l uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 12 14:42:29 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  10. pkg/test/framework/components/echo/config.go

    		!c.ZTunnelCaptured() &&
    		!c.DualStack
    }
    
    // WaypointClient means the client supports HBONE and does zTunnel redirection.
    // Currently, only zTunnel captured sources do this. Eventually this might be enabled
    // for ingress and/or sidecars.
    func (c Config) WaypointClient() bool {
    	return c.ZTunnelCaptured() && !c.IsUncaptured()
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 18.2K bytes
    - Viewed (0)
Back to top