Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 59 for Portal (0.25 sec)

  1. src/net/url/url_test.go

    	{"http://foo.com/foo", "../bar%2fbaz", "http://foo.com/bar%2fbaz"},
    	{"http://foo.com/foo%2dbar/", "./baz-quux", "http://foo.com/foo%2dbar/baz-quux"},
    
    	// RFC 3986: Normal Examples
    	// https://datatracker.ietf.org/doc/html/rfc3986#section-5.4.1
    	{"http://a/b/c/d;p?q", "g:h", "g:h"},
    	{"http://a/b/c/d;p?q", "g", "http://a/b/c/g"},
    	{"http://a/b/c/d;p?q", "./g", "http://a/b/c/g"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:52:38 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  2. operator/pkg/apis/istio/v1alpha1/values_types.proto

      // see https://kubernetes.io/docs/concepts/services-networking/dns-pod-service/#dns-config
      // This does not apply to gateway pods as they typically need a different
      // set of DNS settings than the normal application pods (e.g. in multicluster scenarios).
      repeated string podDNSSearchNamespaces = 43;
    
      // Controls whether the creation of the sidecar injector ConfigMap should be skipped.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/debug.go

    			if pred.ID == baseID {
    				continue
    			}
    			state.logf("Merging in state from %v:\n%v", pred, state.blockEndStateString(blockLocs[pred.ID]))
    		}
    	}
    
    	state.currentState.reset(abt.T{})
    	// The normal logic of "reset" is included in the intersection loop below.
    
    	slotLocs := state.currentState.slots
    
    	// If this is the first call, do updates on the "baseState"; if this
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  4. src/runtime/mgc.go

    		// sched.idleTime and sched.totaltime. memstats also include
    		// the pause time (work,pauseNS), forcing computation of the
    		// total pause time before the pause actually ends.
    		//
    		// Here we reuse the same now for start the world so that the
    		// time added to /sched/pauses/total/gc:seconds will be
    		// consistent with the value in memstats.
    		startTheWorldWithSema(now, stw)
    	})
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/expr.go

    			if !isNumeric(target) {
    				return nil, nil, InvalidUntypedConversion
    			}
    		case UntypedString:
    			// Non-constant untyped string values are not permitted by the spec and
    			// should not occur during normal typechecking passes, but this path is
    			// reachable via the AssignableTo API.
    			if !isString(target) {
    				return nil, nil, InvalidUntypedConversion
    			}
    		default:
    			return nil, nil, InvalidUntypedConversion
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/buildlist.go

    		// order to detect inconsistencies that wouldn't be feasible to spot-check),
    		// so it wouldn't be useful to log when that occurs (because it happens in
    		// normal operation all the time).
    		readModGraphDebugOnce.Do(func() {
    			for _, f := range strings.Split(os.Getenv("GODEBUG"), ",") {
    				switch f {
    				case "lazymod=log":
    					debug.PrintStack()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  7. src/runtime/traceback.go

    	}
    }
    
    // symPC returns the PC that should be used for symbolizing the current frame.
    // Specifically, this is the PC of the last instruction executed in this frame.
    //
    // If this frame did a normal call, then frame.pc is a return PC, so this will
    // return frame.pc-1, which points into the CALL instruction. If the frame was
    // interrupted by a signal (e.g., profiler, segv, etc) then frame.pc is for the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  8. tests/integration/ambient/baseline_test.go

        - operation:
            methods: ["POST"]
    `
    			denySpec := `
      action: DENY
      rules:
      - to:
        - operation:
            paths: ["/explicit-deny"]
    `
    			// for most cases just use the normal policy spec
    			policySpecWL := policySpec
    			if dst.Config().HasAnyWaypointProxy() {
    				// for svc addressed traffic we want the WL policy to allow Waypoint -> Workload
    				policySpecWL = `
      rules:
      - from:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (ANDconst [0xFFFF] (MOVHreg x)) => (MOVHZreg x)
    
    (AND (MOVDconst [c]) y:(MOVWZreg _))  && c&0xFFFFFFFF == 0xFFFFFFFF => y
    (AND (MOVDconst [0xFFFFFFFF]) y:(MOVWreg x)) => (MOVWZreg x)
    // normal case
    (ANDconst [c] (MOVBZreg x)) => (ANDconst [c&0xFF] x)
    (ANDconst [c] (MOVHZreg x)) => (ANDconst [c&0xFFFF] x)
    (ANDconst [c] (MOVWZreg x)) => (ANDconst [c&0xFFFFFFFF] x)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  10. src/runtime/malloc.go

    				// but that's only 4 on 32-bit platforms,
    				// even if there's a uint64 field in typ (see #599).
    				// This causes 64-bit atomic accesses to panic.
    				// Hence, we use stricter alignment that matches
    				// the normal allocator better.
    				if size&7 == 0 {
    					align = 8
    				} else if size&3 == 0 {
    					align = 4
    				} else if size&1 == 0 {
    					align = 2
    				} else {
    					align = 1
    				}
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
Back to top