Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 151 for qsub (0.06 sec)

  1. src/go/constant/example_test.go

    		constant.MakeUint64(42),
    	}
    
    	for i, v := range vs {
    		switch v.Kind() {
    		case constant.Bool:
    			vs[i] = constant.UnaryOp(token.NOT, v, 0)
    
    		case constant.Float:
    			vs[i] = constant.UnaryOp(token.SUB, v, 0)
    
    		case constant.Int:
    			// Use 16-bit precision.
    			// This would be equivalent to ^uint16(v).
    			vs[i] = constant.UnaryOp(token.XOR, v, 16)
    		}
    	}
    
    	for _, v := range vs {
    		fmt.Println(v)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  2. security/pkg/k8s/tokenreview/k8sauthn.go

    	//  "kubernetes.io/serviceaccount/service-account.name":"example-pod-sa",
    	//  "kubernetes.io/serviceaccount/service-account.uid":"ff578a9e-65d3-11e8-aad2-42010a8a001d",
    	//  "sub":"system:serviceaccount:default:example-pod-sa"
    	//  }
    
    	// An example token review status
    	// "status":{
    	//   "authenticated":true,
    	//   "user":{
    	//     "username":"system:serviceaccount:default:example-pod-sa",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 13 17:12:41 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  3. src/archive/tar/strconv.go

    	const maxNanoSecondDigits = 9
    
    	// Split string into seconds and sub-seconds parts.
    	ss, sn, _ := strings.Cut(s, ".")
    
    	// Parse the seconds.
    	secs, err := strconv.ParseInt(ss, 10, 64)
    	if err != nil {
    		return time.Time{}, ErrHeader
    	}
    	if len(sn) == 0 {
    		return time.Unix(secs, 0), nil // No sub-second values
    	}
    
    	// Parse the nanoseconds.
    	if strings.Trim(sn, "0123456789") != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 01 14:28:42 UTC 2023
    - 9K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/loong64/a.out.go

    	ANEGV
    
    	ANOOP // hardware nop
    	ANOR
    	AOR
    	AREM
    	AREMU
    
    	ARFE
    
    	ASC
    	ASCV
    
    	ASGT
    	ASGTU
    
    	ASLL
    	ASQRTD
    	ASQRTF
    	ASRA
    	ASRL
    	AROTR
    	ASUB
    	ASUBD
    	ASUBF
    
    	ASUBU
    	ASUBW
    	ADBAR
    	ASYSCALL
    
    	ATEQ
    	ATNE
    
    	AWORD
    
    	AXOR
    
    	AMASKEQZ
    	AMASKNEZ
    
    	// 64-bit
    	AMOVV
    	AMOVVL
    	AMOVVR
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  5. security/pkg/util/jwtutil_test.go

    			} else if err != nil && tc.expectedErr != nil && err.Error() != tc.expectedErr.Error() {
    				t.Errorf("%s: Got error \"%v\", expected error \"%v\"", id, err, tc.expectedErr)
    			} else if err == nil && exp.Sub(tc.expectedExp) != time.Duration(0) {
    				t.Errorf("%s: Got expiration time: %s, expected expiration time: %s",
    					id, exp.String(), tc.expectedExp.String())
    			}
    		})
    	}
    }
    
    func TestGetAud(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 16:07:11 UTC 2024
    - 6K bytes
    - Viewed (0)
  6. cmd/prune-junit-xml/prunexml.go

    )
    
    func main() {
    	maxTextSize := flag.Int("max-text-size", 1, "maximum size of attribute or text (in MB)")
    	pruneTests := flag.Bool("prune-tests", true,
    		"prune's xml files to display only top level tests and failed sub-tests")
    	flag.Parse()
    	for _, path := range flag.Args() {
    		fmt.Printf("processing junit xml file : %s\n", path)
    		xmlReader, err := os.Open(path)
    		if err != nil {
    			panic(err)
    		}
    		defer xmlReader.Close()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 06 12:26:00 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  7. pkg/config/validation/envoyfilter/envoyfilter.go

    							// sub filter match is supported only for applyTo HTTP_FILTER
    							if cp.ApplyTo != networking.EnvoyFilter_HTTP_FILTER {
    								errs = validation.AppendValidation(errs, fmt.Errorf("Envoy filter: subfilter match can be used with applyTo HTTP_FILTER only")) // nolint: stylecheck
    								continue
    							}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 00:31:03 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity.go

    }
    
    // Sub subtracts the provided quantity from the current value in place. If the current
    // value is zero, the format of the quantity will be updated to the format of y.
    func (q *Quantity) Sub(y Quantity) {
    	q.s = ""
    	if q.IsZero() {
    		q.Format = y.Format
    	}
    	if q.d.Dec == nil && y.d.Dec == nil && q.i.Sub(y.i) {
    		return
    	}
    	q.ToDec().d.Dec.Sub(q.d.Dec, y.AsDec())
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  9. src/internal/fuzz/encoding.go

    		case *ast.BasicLit:
    			if op.Op != token.SUB {
    				return nil, fmt.Errorf("unsupported operation on int/float: %v", op.Op)
    			}
    			// Special case for negative numbers.
    			val = op.Op.String() + lit.Value // e.g. "-" + "124"
    			kind = lit.Kind
    		case *ast.Ident:
    			if lit.Name != "Inf" {
    				return nil, fmt.Errorf("expected operation on int or float type")
    			}
    			if op.Op == token.SUB {
    				val = "-Inf"
    			} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 30 16:39:12 UTC 2022
    - 11K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/admission/metrics/metrics.go

    		latencies: metrics.NewHistogramVec(
    			&metrics.HistogramOpts{
    				Namespace:      namespace,
    				Subsystem:      subsystem,
    				Name:           "step_admission_duration_seconds",
    				Help:           "Admission sub-step latency histogram in seconds, broken out for each operation and API resource and step type (validate or admit).",
    				Buckets:        []float64{0.005, 0.025, 0.1, 0.5, 1.0, 2.5},
    				StabilityLevel: metrics.STABLE,
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 17:01:40 UTC 2023
    - 15.5K bytes
    - Viewed (0)
Back to top