Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 706 for light (0.06 sec)

  1. src/cmd/internal/obj/ppc64/doc.go

    extremely helpful in determining what final PPC64 assembly is generated from the
    corresponding Go assembly.
    
    In the examples below, the Go assembly is on the left, PPC64 assembly on the right.
    
    1. Operand ordering
    
    In Go asm, the last operand (right) is the target operand, but with PPC64 asm,
    the first operand (left) is the target. The order of the remaining operands is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:47:45 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  2. src/cmd/trace/tasks.go

    }
    table#req-status td.family {
      padding-right: 2em;
    }
    table#req-status td.active {
      padding-right: 1em;
    }
    table#req-status td.empty {
      color: #aaa;
    }
    table#reqs {
      margin-top: 1em;
      border-collapse: collapse;
    }
    table#reqs tr.first {
      font-weight: bold;
    }
    table#reqs td {
      font-family: monospace;
    }
    table#reqs td.when {
      text-align: right;
      white-space: nowrap;
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modfetch/codehost/git.go

    // into the map r.localTags.
    func (r *gitRepo) loadLocalTags(ctx context.Context) {
    	// The git protocol sends all known refs and ls-remote filters them on the client side,
    	// so we might as well record both heads and tags in one shot.
    	// Most of the time we only care about tags but sometimes we care about heads too.
    	out, err := Run(ctx, r.dir, "git", "tag", "-l")
    	if err != nil {
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 22:10:38 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  4. src/runtime/map_fast64.go

    						typedmemmove(t.Key, dst.k, k)
    					}
    				} else {
    					*(*uint64)(dst.k) = *(*uint64)(k)
    				}
    
    				typedmemmove(t.Elem, dst.e, e)
    				dst.i++
    				// These updates might push these pointers past the end of the
    				// key or elem arrays.  That's ok, as we have the overflow pointer
    				// at the end of the bucket to protect against pointing past the
    				// end of the bucket.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  5. src/log/slog/logger_test.go

    	check(`level=INFO msg=info a.i=1`)
    }
    
    func TestConnections(t *testing.T) {
    	var logbuf, slogbuf bytes.Buffer
    
    	// Revert any changes to the default logger. This is important because other
    	// tests might change the default logger using SetDefault. Also ensure we
    	// restore the default logger at the end of the test.
    	currentLogger := Default()
    	currentLogWriter := log.Writer()
    	currentLogFlags := log.Flags()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 10 21:25:30 UTC 2023
    - 19.5K bytes
    - Viewed (0)
  6. pkg/util/iptree/iptree.go

    	for bitPosition < mask {
    		// Look for a child checking the bit position after the mask
    		n = n.child[getBitFromAddr(address, bitPosition+1)]
    		if n == nil {
    			return zeroT, false
    		}
    		// check we are in the right branch comparing the suffixes
    		if !n.prefix.Contains(address) {
    			return zeroT, false
    		}
    		// update the new bit position with the new node mask
    		bitPosition = n.prefix.Bits()
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:04 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/admissionregistration/v1/types_swagger_doc_generated.go

    a service running in the cluster; use the `service` field instead. The host might be resolved via external DNS in some apiservers (e.g., `kube-apiserver` cannot resolve in-cluster DNS as that would be a layering violation). `host` may also be an IP address.\n\nPlease note that using `localhost` or `127.0.0.1` as a `host` is risky unless you take great care to run this webhook on all hosts which run an apiserver which might need to make calls to this webhook. Such installs are likely to be non-portable,...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 48.7K bytes
    - Viewed (0)
  8. src/internal/trace/oldtrace.go

    }
    
    var errSkip = errors.New("skip event")
    
    // convertEvent converts an event from the old trace format to zero or more
    // events in the new format. Most events translate 1 to 1. Some events don't
    // result in an event right away, in which case convertEvent returns errSkip.
    // Some events result in more than one new event; in this case, convertEvent
    // returns the first event and stores additional events in it.extra. When
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  9. pkg/scheduler/apis/config/types.go

    	ClientConnection componentbaseconfig.ClientConnectionConfiguration
    
    	// DebuggingConfiguration holds configuration for Debugging related features
    	// TODO: We might wanna make this a substruct like Debugging componentbaseconfig.DebuggingConfiguration
    	componentbaseconfig.DebuggingConfiguration
    
    	// PercentageOfNodesToScore is the percentage of all nodes that once found feasible
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 18:47:23 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  10. cmd/encryption-v1_test.go

    		}
    		if err == nil {
    			if etag != test.ETag {
    				t.Fatalf("Test %d: ETag mismatch: got %s - want %s", i, etag, test.ETag)
    			}
    		}
    	}
    }
    
    // Tests for issue reproduced when getting the right encrypted
    // offset of the object.
    func TestGetDecryptedRange_Issue50(t *testing.T) {
    	rs, err := parseRequestRangeSpec("bytes=594870256-594870263")
    	if err != nil {
    		t.Fatal(err)
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Sep 24 04:17:08 UTC 2022
    - 19.9K bytes
    - Viewed (0)
Back to top