Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 65 for defUse (0.19 sec)

  1. src/time/time.go

    // 00:00:00 UTC, which would be 12-31-(-1) 19:00:00 in New York.
    //
    // The zero Time value does not force a specific epoch for the time
    // representation. For example, to use the Unix epoch internally, we
    // could define that to distinguish a zero value from Jan 1 1970, that
    // time would be represented by sec=-1, nsec=1e9. However, it does
    // suggest a representation, namely using 1-1-1 00:00:00 UTC as the
    // epoch, and that's what we do.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/buildlist.go

    				//
    				// Note that this condition is also detected (and logged with more
    				// detail) earlier during package loading, so it shouldn't actually be
    				// possible at this point — this is just a defense in depth.
    				return rs, errGoModDirty
    			}
    		}
    
    		// No explicit roots are missing and all roots are already at the versions
    		// we want to keep. Any other changes we would make are purely cosmetic,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    	// interval and events won't be popped from the cacheWatcher's
    	// input channel until much later.
    	cacher.dispatchTimeoutBudget.returnUnused(100 * time.Millisecond)
    
    	// We define a custom index validator such that the interval is
    	// able to serve the first bufferSize elements successfully, but
    	// on trying to fill it's buffer again, the indexValidator simulates
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  4. src/internal/trace/order.go

    // add completed events to the ordering. Next is used to pick
    // off events in the ordering.
    type ordering struct {
    	gStates     map[GoID]*gState
    	pStates     map[ProcID]*pState // TODO: The keys are dense, so this can be a slice.
    	mStates     map[ThreadID]*mState
    	activeTasks map[TaskID]taskState
    	gcSeq       uint64
    	gcState     gcState
    	initialGen  uint64
    	queue       queue[Event]
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  5. src/crypto/x509/x509.go

    )
    
    // ExtKeyUsage represents an extended set of actions that are valid for a given key.
    // Each of the ExtKeyUsage* constants define a unique action.
    type ExtKeyUsage int
    
    const (
    	ExtKeyUsageAny ExtKeyUsage = iota
    	ExtKeyUsageServerAuth
    	ExtKeyUsageClientAuth
    	ExtKeyUsageCodeSigning
    	ExtKeyUsageEmailProtection
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/gateway/conversion.go

    //
    // Not supported:
    // Multiple hostname/IP - It is feasible but preference is to create multiple Gateways. This would also break the 1:1 mapping of GW:Service
    // Mixed hostname and IP - doesn't make sense; user should define the IP in service
    // NamedAddress - Service has no concept of named address. For cloud's that have named addresses they can be configured by annotations,
    //
    //	which users can add to the Gateway.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    		Namespace: "bookinfo-ratings",
    		Endpoint: &model.IstioEndpoint{
    			Labels:       labels.Instance{"app": "ratings"},
    			Address:      "2.2.2.2",
    			EndpointPort: 8081, // should be ignored since it doesn't define PortMap
    		},
    	}
    
    	wiRatings2 := &model.WorkloadInstance{
    		Name:      "ratings-2",
    		Namespace: "bookinfo-ratings",
    		Endpoint: &model.IstioEndpoint{
    			Labels:  labels.Instance{"app": "ratings"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modload/init.go

    						base.ShortPath(filepath.Dir(gomod)), err)
    				}
    			}
    			errs = append(errs, err)
    			continue
    		}
    		if inWorkspaceMode() && !strings.HasPrefix(cfg.CmdName, "work ") {
    			// Refuse to use workspace if its go version is too old.
    			// Disable this check if we are a workspace command like work use or work sync,
    			// which will fix the problem.
    			mv := gover.FromGoMod(f)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/css/manual.css

    figure {
    	margin: 0;
    }
    
    /* ========================================================================== Forms ========================================================================== */
    /** Define consistent border, margin, and padding. */
    fieldset {
    	border: 1px solid #c0c0c0;
    	margin: 0 2px;
    	padding: 0.35em 0.625em 0.75em;
    }
    
    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/runtime/map.go

    }
    
    // tooManyOverflowBuckets reports whether noverflow buckets is too many for a map with 1<<B buckets.
    // Note that most of these overflow buckets must be in sparse use;
    // if use was dense, then we'd have already triggered regular map growth.
    func tooManyOverflowBuckets(noverflow uint16, B uint8) bool {
    	// If the threshold is too low, we do extraneous work.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
Back to top