Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 34 of 34 for uber (0.04 sec)

  1. src/cmd/compile/internal/ssa/rewrite.go

    	return encodePPC64RotateMask((32-srw+sld)&31, int64(mask), 32)
    }
    
    // Convert a PPC64 opcode from the Op to OpCC form. This converts (op x y)
    // to (Select0 (opCC x y)) without having to explicitly fixup every user
    // of op.
    //
    // E.g consider the case:
    // a = (ADD x y)
    // b = (CMPconst [0] a)
    // c = (OR a z)
    //
    // A rule like (CMPconst [0] (ADD x y)) => (CMPconst [0] (Select0 (ADDCC x y)))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  2. cmd/kubelet/app/server.go

    		systemReserved, err := parseResourceList(s.SystemReserved)
    		if err != nil {
    			return fmt.Errorf("--system-reserved value failed to parse: %w", err)
    		}
    		var hardEvictionThresholds []evictionapi.Threshold
    		// If the user requested to ignore eviction thresholds, then do not set valid values for hardEvictionThresholds here.
    		if !s.ExperimentalNodeAllocatableIgnoreEvictionThreshold {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  3. src/time/format.go

    		case stdFracSecond0, stdFracSecond9:
    			b = appendNano(b, t.Nanosecond(), std)
    		}
    	}
    	return b
    }
    
    var errBad = errors.New("bad value for field") // placeholder not passed to user
    
    // ParseError describes a problem parsing a time string.
    type ParseError struct {
    	Layout     string
    	Value      string
    	LayoutElem string
    	ValueElem  string
    	Message    string
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  4. 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)
Back to top