Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 300 for foo_vr (0.12 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/ModelPathSuggestionProviderTest.groovy

            suggestionsFor("foor") == ["foob", "for", "bor", "fo"]
            suggestionsFor("foora") == ["foob", "for"]
        }
    
        def "suggestions are ordered by distance then alphabetical"() {
            when:
            availablePaths = ["tasks.foobar", "task.afoobar", "tasks.f", "tasks.boofar", "fooba", "tasks.foo"]
    
            then:
            suggestionsFor("tasks.fooba") == ["tasks.foobar", "tasks.foo", "task.afoobar", "tasks.boofar"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/add_functions_for_exported_names.mlir

      }
    }
    
    // -----
    
    // CHECK-LABEL: @export_as_self
    module @export_as_self attributes {tf_saved_model.semantics} {
      // CHECK: func @foobar
      // CHECK: func @baz
      // CHECK: func private @foobar_internal
      func.func @foobar()
        attributes {tf_saved_model.exported_names = ["foobar", "baz"]}
      {
        func.return
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 06 22:55:17 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. buildscripts/disable-root.sh

    export MC_HOST_siteb=http://minioadmin:minioadmin@127.0.0.1:9004
    
    ./mc ready sitea
    ./mc ready siteb
    
    ./mc admin replicate add sitea siteb
    
    ./mc admin user add sitea foobar foo12345
    
    ./mc admin policy attach sitea/ consoleAdmin --user=foobar
    
    ./mc admin user info siteb foobar
    
    killall -9 minio
    
    echo "turning off root access, however site replication must continue"
    export MINIO_API_ROOT_ACCESS=off
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. test/fixedbugs/issue8836.go

    // license that can be found in the LICENSE file.
    
    // Checking that line number is correct in error message.
    
    package main
    
    type Cint int
    
    func foobar(*Cint, Cint, Cint, *Cint)
    
    func main() {
    	a := Cint(1)
    
    	foobar(
    		&a,
    		0,
    		0,
    		42, // ERROR ".*"
    	)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 381 bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/HtmlReportTemplate.kt

        /**
         * Returns the header and footer of the html template as a pair.
         */
        fun load(): Pair<String, String> {
            val template = readHtmlTemplate()
            val headerEnd = template.indexOf(modelLine)
            require(headerEnd > 0) {
                "Invalid configuration cache report template!"
            }
            val header = template.substring(0, headerEnd)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/gateway/testdata/route-binding.yaml

      gatewayClassName: istio
      listeners:
      - name: default
        hostname: "*.domain.example"
        port: 80
        protocol: HTTP
        allowedRoutes:
          namespaces:
            from: All
      - name: foobar
        hostname: "*.foobar.example"
        port: 80
        protocol: HTTP
        allowedRoutes:
          namespaces:
            from: All
          kinds:
          - kind: HTTPRoute
      - name: same-namespace
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 11 20:21:53 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  7. pkg/apis/discovery/v1/defaults_test.go

    		"should not overwrite values with defaults when set": {
    			original: &discovery.EndpointSlice{
    				Ports: []discovery.EndpointPort{{
    					Name:     &fooStr,
    					Protocol: &protoUDP,
    				}},
    			},
    			expected: &discovery.EndpointSlice{
    				Ports: []discovery.EndpointPort{{
    					Name:     &fooStr,
    					Protocol: &protoUDP,
    				}},
    			},
    		},
    	}
    
    	for _, test := range tests {
    		actual := test.original
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 08 12:14:37 UTC 2023
    - 2K bytes
    - Viewed (0)
  8. cmd/kubeadm/test/cmd/join_test.go

    	_, _, _, err := RunCmd(kubeadmPath, "reset")
    	return err
    }
    
    func TestCmdJoinConfig(t *testing.T) {
    	var initTest = []struct {
    		name     string
    		args     string
    		expected bool
    	}{
    		{"config", "--config=foobar", false},
    		{"config path", "--config=/does/not/exist/foo/bar", false},
    	}
    
    	kubeadmPath := getKubeadmPath()
    	for _, rt := range initTest {
    		t.Run(rt.name, func(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 08 21:47:16 UTC 2020
    - 6.6K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/NamedDomainObjectContainerIntegrationTest.groovy

                    assert element.name in ['foo', 'barfoo']
                }
    
                testContainer.register("foo")
                testContainer.register("bar")
                testContainer.register("foobar")
                testContainer.register("barfoo")
            """
            expect:
            succeeds "help"
        }
    
        @Issue("https://github.com/gradle/gradle/issues/9446")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  10. subprojects/core/src/main/resources/org/gradle/reporting/base-style.css

        padding-right: 50px;
        padding-top: 30px;
        padding-bottom: 30px;
    }
    
    #content h1 {
        font-size: 160%;
        margin-bottom: 10px;
    }
    
    #footer {
        margin-top: 100px;
        font-size: 80%;
        white-space: nowrap;
    }
    
    #footer, #footer a {
        color: #a0a0a0;
    }
    
    #line-wrapping-toggle {
        vertical-align: middle;
    }
    
    #label-for-line-wrapping-toggle {
        vertical-align: middle;
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 10 15:05:34 UTC 2020
    - 2.6K bytes
    - Viewed (0)
Back to top