Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 26 of 26 for a$b (1.09 sec)

  1. pkg/kubelet/eviction/helpers_test.go

    		if value != expected.value {
    			t.Errorf("Test case: %s, expected: %v, actual: %v", input, expected.value, value)
    		}
    	}
    }
    
    func TestCompareThresholdValue(t *testing.T) {
    	testCases := []struct {
    		a, b  evictionapi.ThresholdValue
    		equal bool
    	}{
    		{
    			a: evictionapi.ThresholdValue{
    				Quantity: resource.NewQuantity(123, resource.BinarySI),
    			},
    			b: evictionapi.ThresholdValue{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 106.7K bytes
    - Viewed (0)
  2. src/runtime/proc.go

    func (enum *randomEnum) next() {
    	enum.i++
    	enum.pos = (enum.pos + enum.inc) % enum.count
    }
    
    func (enum *randomEnum) position() uint32 {
    	return enum.pos
    }
    
    func gcd(a, b uint32) uint32 {
    	for b != 0 {
    		a, b = b, a%b
    	}
    	return a
    }
    
    // An initTask represents the set of initializations that need to be done for a package.
    // Keep in sync with ../../test/noinit.go:initTask
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

          .
          For example, this would transform
            %a = "x.f"()
            %b = "y.f"(%a)
            %c = "x.f"(%a)
          to
            %a = "x.f"()
            %c = "x.f"(%a)
            %b = "y.f"(%a)
          so that the two "x" dialect instructions are next to each other.
      }];
      let constructor = "TF::CreateOrderByDialectPass()";
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_pods_test.go

    			},
    			nilLister: true,
    			configMap: &v1.ConfigMap{
    				ObjectMeta: metav1.ObjectMeta{
    					Namespace: "test1",
    					Name:      "test-configmap",
    				},
    				Data: map[string]string{
    					"a": "b",
    				},
    			},
    			expectedEnvs: nil,
    		},
    		{
    			name:               "secretkeyref_missing_optional",
    			ns:                 "test",
    			enableServiceLinks: &falseValue,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  5. cmd/object-handlers_test.go

    		req.Header.Set("X-Amz-Copy-Source", url.QueryEscape(pathJoin(bucketName, objectName)))
    		req.Header.Set("X-Amz-Copy-Source-Range", fmt.Sprintf("bytes=%d-%d", a, b))
    
    		// Since `apiRouter` satisfies `http.Handler` it has a ServeHTTP to execute the logic of the handler.
    		// Call the ServeHTTP to execute the handler, `func (api objectAPIHandlers) CopyObjectHandler` handles the request.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/arm64/asm7.go

    	// Turn illegal instruction into an UNDEF, avoid crashing in asmout
    	return &Optab{obj.AUNDEF, C_NONE, C_NONE, C_NONE, C_NONE, C_NONE, 90, 4, 0, 0, 0}
    }
    
    func cmp(a int, b int) bool {
    	if a == b {
    		return true
    	}
    	switch a {
    	case C_RSP:
    		if b == C_REG {
    			return true
    		}
    
    	case C_ZREG:
    		if b == C_REG {
    			return true
    		}
    
    	case C_ADDCON0:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
Back to top