Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for Blah (0.2 sec)

  1. pkg/util/flag/flags_test.go

    			argc:      "blah --ipport=::1",
    			expectVal: "::1",
    		},
    		{
    			desc:      "valid ipv6 2",
    			argc:      "blah --ipport=::",
    			expectVal: "::",
    		},
    		{
    			desc:      "valid ipv6 with port",
    			argc:      "blah --ipport=[::1]:8080",
    			expectVal: "[::1]:8080",
    		},
    		{
    			desc:      "invalid ipv6 with port without bracket",
    			argc:      "blah --ipport=fd00:f00d:600d:f00d:8080",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 14 10:45:23 UTC 2021
    - 8.8K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/serviceentry_simulation_test.go

    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: vs1
    spec:
      hosts:
      - blah.somedomain
      tls:
      - match:
        - port: 9999
          sniHosts:
          - blah.somedomain
        route:
        - destination:
            host: blah.somedomain
            port:
              number: 9999`
    
    func TestServiceEntry(t *testing.T) {
    	cases := []simulationTest{
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 21:06:06 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  3. src/internal/coverage/cfile/testdata/issue56006/repro.go

    package main
    
    //go:noinline
    func blah(x int) int {
    	if x != 0 {
    		return x + 42
    	}
    	return x - 42
    }
    
    func main() {
    	go infloop()
    	println(blah(1) + blah(0))
    }
    
    var G int
    
    func infloop() {
    	for {
    		G += blah(1)
    		G += blah(0)
    		if G > 10000 {
    			G = 0
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 19:41:02 UTC 2024
    - 260 bytes
    - Viewed (0)
  4. maven-core/src/test/resources/projects/modelsourcebasedir/pom.xml

      <artifactId>local-parent</artifactId>
      <packaging>pom</packaging>
      <version>1.0</version>
    
      <dependencies>
        <dependency>
          <groupId>blah</groupId>
          <artifactId>blah</artifactId>
          <version>0.0.1-SNASPSHOT</version>
          <scope>system</scope>
          <systemPath>${basedir}/blah.jar</systemPath>
        </dependency>
      </dependencies>
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Aug 17 08:59:48 UTC 2021
    - 645 bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/node_matchers_test.cc

          "\ninput 0 does not match expected:\nname: blah, \nsource does not match "
          "expected name: blah\n\t\nexpected name blah but found placeholder_a");
      EXPECT_EQ(
          Explain(add.node(), NodeWith(Inputs(_, Out(NodeWith(Name("blah")))))),
          "\ninput 1 does not match expected:\nname: blah, \nsource does not match "
          "expected name: blah\n\t\nexpected name blah but found placeholder_b");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 14:43:57 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/cover_test_localpkg_filepath.txt

    [short] skip
    
    # collect coverage profile in text format
    go test -coverprofile=blah.prof prog.go prog_test.go
    
    # should not contain cmd-line pseudo-import-path
    grep prog.go blah.prof
    grep $PWD blah.prof
    ! grep command-line-arguments blah.prof
    
    -- prog.go --
    package main
    
    func Mumble(x int) int {
    	if x < 0 {
    		return -x
    	}
    	return 42
    }
    
    func Grumble(y int) int {
    	return -y
    }
    
    func main() {
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 01 14:11:54 UTC 2022
    - 571 bytes
    - Viewed (0)
  7. api/api-rules/codegen_violation_exceptions.list

    API rule violation: names_match,k8s.io/code-generator/examples/apiserver/apis/example/v1,TestTypeStatus,Blah
    API rule violation: names_match,k8s.io/code-generator/examples/apiserver/apis/example2/v1,TestTypeStatus,Blah
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:20 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  8. src/internal/coverage/cfile/testdata/issue56006/repro_test.go

    package main
    
    import "testing"
    
    func TestSomething(t *testing.T) {
    	go infloop()
    	println(blah(1) + blah(0))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 19:41:02 UTC 2024
    - 111 bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/test/groovy/org/gradle/plugins/ide/internal/tooling/DefaultGradleProjectTest.groovy

            child1.children = [child11, child12]
            child2.children = [child21]
    
            expect:
            root.findByPath(':') == root
            root.findByPath('') == null
            root.findByPath('blah blah') == null
    
            root.findByPath(':child1:child12') == child12
            root.findByPath(':child2') == child2
    
            child1.findByPath(':') == null
            child1.findByPath(':child1:child11') == child11
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  10. pkg/util/hash/hash_test.go

    	wheel2 := wheel{radius: 22}
    	wheel3 := wheel{radius: 17}
    
    	myUni1 := unicycle{licencePlateID: "blah", primaryWheel: &wheel1, tags: map[string]string{"color": "blue", "name": "john"}}
    	myUni2 := unicycle{licencePlateID: "blah", primaryWheel: &wheel2, tags: map[string]string{"color": "blue", "name": "john"}}
    	myUni3 := unicycle{licencePlateID: "blah", primaryWheel: &wheel3, tags: map[string]string{"color": "blue", "name": "john"}}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 27 01:24:22 UTC 2023
    - 4.4K bytes
    - Viewed (0)
Back to top