Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 349 for foo_Bar (0.22 sec)

  1. pkg/kubelet/kubelet_getters_test.go

    	assert.Equal(t, exp, got)
    
    	got = kubelet.getPodPluginDir("abc123", "foobar")
    	exp = filepath.Join(root, "pods/abc123/plugins/foobar")
    	assert.Equal(t, exp, got)
    
    	got = kubelet.getVolumeDevicePluginsDir()
    	exp = filepath.Join(root, "plugins")
    	assert.Equal(t, exp, got)
    
    	got = kubelet.getVolumeDevicePluginDir("foobar")
    	exp = filepath.Join(root, "plugins", "foobar", "volumeDevices")
    	assert.Equal(t, exp, got)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 00:48:07 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/test/groovy/org/gradle/util/PathTest.groovy

            path(':foo:bar').takeFirstSegments(1) == path(':foo')
            path(':foo:bar').takeFirstSegments(2) == path(':foo:bar')
            path(':foo:bar:baz').takeFirstSegments(2) == path(':foo:bar')
        }
    
        def "can take first n segments without incurring unnecessary copies"() {
            given:
            def path = path(':foo:bar')
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 12:54:37 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/ProviderConventionMappingIntegrationTest.groovy

                    }
    
                    @TaskAction
                    void useIt() {
                        assert foo.get() == "foobar"
                    }
                }
                tasks.register("mytask", MyTask) {
                    conventionMapping.map("foo", { providerFactory.provider { "foobar" } })
                    other.convention("other")
                }
            """
    
            expect:
            runAndFail 'mytask'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 12:27:37 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  4. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/AbstractIdeLifecycleIntegrationTest.groovy

        def assertCleanTasksRunBeforeGenerationTasks() {
            [":", ":foo", ":foo:bar"].each { projectPath ->
                getGenerationTaskNames(projectPath).each { taskName ->
                    result.assertTaskOrder(getCleanTaskName(taskName), taskName)
                }
            }
        }
    
        def assertGenerationTasksRunBeforeCleanTasks() {
            [":", ":foo", ":foo:bar"].each { projectPath ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/notations/ProjectDependencyFactoryTest.groovy

            given:
            boolean expectedTransitive = false;
            final Map<String, Object> mapNotation = GUtil.map("path", ":foo:bar", "configuration", "compile", "transitive", expectedTransitive);
    
            and:
            projectFinder.getProject(':foo:bar') >> projectDummy
    
            when:
            def projectDependency = factory.createFromMap(projectFinder, mapNotation);
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 16:36:23 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  6. pkg/registry/rbac/validation/rule_test.go

    				{Kind: rbacv1.UserKind, Name: "foobar"},
    			},
    			user:      &user.DefaultInfo{Name: "foobar"},
    			appliesTo: true,
    			index:     0,
    			testCase:  "single subject that matches username",
    		},
    		{
    			subjects: []rbacv1.Subject{
    				{Kind: rbacv1.UserKind, Name: "barfoo"},
    				{Kind: rbacv1.UserKind, Name: "foobar"},
    			},
    			user:      &user.DefaultInfo{Name: "foobar"},
    			appliesTo: true,
    			index:     1,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/tests/trim-functions-tf.mlir

    // RUN: tf-opt -tfl-trim-funcs-tf="trim-funcs-allowlist=bar,foobar" %s | FileCheck %s
    
    func.func @foo(%arg0: tensor<1x4xf32>, %arg1: tensor<1x4xf32>) -> tensor<1x4xf32> {
      func.return %arg0 : tensor<1x4xf32>
    }
    
    func.func @bar(%arg0: tensor<2x4xf32>, %arg1: tensor<2x4xf32>) -> tensor<2x4xf32> {
      func.return %arg0 : tensor<2x4xf32>
    }
    
    func.func @foobar(%arg0: tensor<1x4xf32>, %arg1: tensor<1x4xf32>) -> tensor<1x4xf32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 26 23:53:32 UTC 2022
    - 565 bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/dsl/CapabilityNotationParserFactoryTest.groovy

            where:
            notation << [
                    "foo:bar",
                    "foo:bar:",
                    "foo::1.0",
                    ":bar:1.0"
            ]
        }
    
        def "invalid string notation #notation is reported for lenient parser"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/ModelPathSuggestionProviderTest.groovy

        }
    
        def "suggests model paths with Levenshtein distance lower than 4"() {
            when:
            availablePaths = ["task.afoobar", "tasks.boofar", "tasks.foobar", "tasks.f", "fooba"]
    
            then:
            suggestionsFor("tasks.fooba") == ["tasks.foobar", "task.afoobar", "tasks.boofar"]
        }
    
        def "suggests model paths with Levenshtein distance lower than half it's length for strings shorter than 6 characters"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2K bytes
    - Viewed (0)
  10. 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)
Back to top