Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 53 for a$b (0.09 sec)

  1. pkg/printers/internalversion/printers_test.go

    						Labels: map[string]string{"a": "b"},
    					},
    					Spec: api.PodSpec{
    						Containers: []api.Container{},
    					},
    				},
    			},
    		},
    	}
    
    	// Columns: Name, Containers, Images, Pod Labels
    	expectedRows := []metav1.TableRow{
    		{Cells: []interface{}{"pod-template-1", "", "", "foo=bar"}},
    		{Cells: []interface{}{"pod-template-2", "", "", "a=b"}},
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/exec.go

    	// when -trimpath is enabled.
    	if b.gccSupportsFlag(compiler, "-fdebug-prefix-map=a=b") {
    		if cfg.BuildTrimpath || p.Goroot {
    			prefixMapFlag := "-fdebug-prefix-map"
    			if b.gccSupportsFlag(compiler, "-ffile-prefix-map=a=b") {
    				prefixMapFlag = "-ffile-prefix-map"
    			}
    			// Keep in sync with Action.trimpath.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformIntegrationTest.groovy

                def a = file('a.jar')
                a.text = '1234'
                def b = file('b.jar')
                b.text = '12'
                task jars
    
                dependencies {
                    compile files([a, b]) { builtBy jars }
                }
    
                ${configurationAndTransform('FileSizer')}
            """
    
            when:
            run "resolve"
    
            then:
            executed(":jars", ":resolve")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:42 UTC 2023
    - 100.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

      // TODO(b/142478136): Handle fused ops.
      if (getFusedActivationFunction() != "NONE") return {};
      return ConstFoldBinaryOp(
          getType(), operands, [](APFloat a, APFloat b) { return a + b; },
          [](APInt a, APInt b) { return a + b; });
    }
    
    int64_t AddOp::GetArithmeticCount(Operation* op) {
      int64_t count;
      if (ArithmeticCountUtilHelper::GetFirstOutputCount(op, &count)) return count;
    
      return -1;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  5. doc/go1.17_spec.html

    <p>
    these types are identical:
    </p>
    
    <pre>
    A0, A1, and []string
    A2 and struct{ a, b int }
    A3 and int
    A4, func(int, float64) *[]string, and A5
    
    B0 and C0
    []int and []int
    struct{ a, b *T5 } and struct{ a, b *T5 }
    func(x int, y float64) *[]string, func(int, float64) (result *[]string), and A5
    </pre>
    
    <p>
    <code>B0</code> and <code>B1</code> are different because they are new types
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/CallTest.kt

      }
    
      @Test
      fun requestHeaderNameWithSpaceForbidden() {
        assertFailsWith<IllegalArgumentException> {
          Request.Builder().addHeader("a b", "c")
        }.also { expected ->
          assertThat(expected.message).isEqualTo("Unexpected char 0x20 at 1 in header name: a b")
        }
      }
    
      @Test
      fun requestHeaderNameWithTabForbidden() {
        assertFailsWith<IllegalArgumentException> {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 142.5K bytes
    - Viewed (0)
  7. src/crypto/x509/x509_test.go

    			}
    		}
    	}
    }
    
    type matchHostnamesTest struct {
    	pattern, host string
    	ok            bool
    }
    
    var matchHostnamesTests = []matchHostnamesTest{
    	{"a.b.c", "a.b.c", true},
    	{"a.b.c", "b.b.c", false},
    	{"", "b.b.c", false},
    	{"a.b.c", "", false},
    	{"example.com", "example.com", true},
    	{"example.com", "www.example.com", false},
    	{"*.example.com", "example.com", false},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  8. pkg/apis/batch/validation/validation_test.go

    )
    
    var ignoreErrValueDetail = cmpopts.IgnoreFields(field.Error{}, "BadValue", "Detail")
    
    func getValidManualSelector() *metav1.LabelSelector {
    	return &metav1.LabelSelector{
    		MatchLabels: map[string]string{"a": "b"},
    	}
    }
    
    func getValidPodTemplateSpecForManual(selector *metav1.LabelSelector) api.PodTemplateSpec {
    	return api.PodTemplateSpec{
    		ObjectMeta: metav1.ObjectMeta{
    			Labels: selector.MatchLabels,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 124.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

       multiples times. The output tensor's i'th dimension has
       input.dims(i) * multiples[i] elements, and the values of input
       are replicated multiples[i] times along the 'i'th dimension.
       For example, tiling [a b c d] by [2] produces [a b c d a b c d].
      }];
    
      let arguments = (ins
        TFL_TensorOf<[F32, I1, I32, I64, UI8, QI8, QUI8, TFL_Str]>:$input,
        TFL_I32OrI64Tensor:$multiples);
    
      let results = (outs
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/endpoints/apiserver_test.go

    		},
    		{
    			url:       "/" + grouplessPrefix + "/" + grouplessGroupVersion.Version + "/simple?namespace=other&labelSelector=a%3Db&fieldSelector=c%3Dd",
    			namespace: "",
    			legacy:    true,
    			label:     "a=b",
    			field:     "c=d",
    		},
    		// legacy api version is honored
    		{
    			url:       "/" + grouplessPrefix + "/" + grouplessGroupVersion.Version + "/simple",
    			namespace: "",
    			legacy:    true,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 20:15:22 UTC 2023
    - 158.7K bytes
    - Viewed (0)
Back to top