Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 361 for notbar (0.14 sec)

  1. pkg/controller/deployment/deployment_controller_test.go

    	rsAdopt.OwnerReferences = nil
    	// RS with matching ControllerRef, but wrong labels. Should be released.
    	rsRelease := newReplicaSet(d, "rsRelease", 1)
    	rsRelease.Labels = map[string]string{"foo": "notbar"}
    
    	f.dLister = append(f.dLister, d)
    	f.rsLister = append(f.rsLister, rsAdopt, rsRelease)
    	f.objects = append(f.objects, d, rsAdopt, rsRelease)
    
    	// Start the fixture.
    	c, informers, err := f.newController(ctx)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  2. src/crypto/x509/name_constraints_test.go

    			},
    		},
    		intermediates: [][]constraintsSpec{
    			{
    				{
    					ok: []string{"dns:.bar.example.com"},
    				},
    			},
    		},
    		leaf: leafSpec{
    			sans: []string{"dns:foo.notbar.example.com"},
    		},
    		expectedError: "\"foo.notbar.example.com\" is not permitted",
    	},
    
    	// #14: roots can exclude subtrees and that doesn't affect other names.
    	{
    		roots: []constraintsSpec{
    			{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 22:40:21 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/ProviderConventionMappingIntegrationTest.groovy

                    @Internal abstract Property<String> getBar()
    
                    @TaskAction
                    void useIt() {
                        assert foo.get() == "foobar"
                    }
                }
                tasks.register("mytask", MyTask) {
                    conventionMapping.map("foo") { "foobar" }
                }
            """
    
            expect:
            succeeds '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/core-configuration/declarative-dsl-provider/src/integTest/groovy/org/gradle/internal/declarativedsl/settings/SoftwareTypeConventionIntegrationTest.groovy

            then:
            outputContains("""id = test\nbar = plugin""")
        }
    
        static String setId(String id) {
            return "id = \"${id}\"\n"
        }
    
        static String setFooBar(String bar) {
            return setFoo(setBar(bar))
        }
    
        static String setBar(String bar) {
            return "bar = \"${bar}\"\n"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 12:50:35 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenCustomPackagingResolveIntegrationTest.groovy

            then:
            file("remote").assertHasDescendants("remote-1.0.notJar")
            file('remote/remote-1.0.notJar').assertIsCopyOf(remote.artifactFile)
    
            when:
            server.resetExpectations()
            run("remote")
    
            then: // uses cached stuff
            file("remote").assertHasDescendants("remote-1.0.notJar")
            file('remote/remote-1.0.notJar').assertIsCopyOf(remote.artifactFile)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 9K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/VariantFilesMetadataRulesIntegrationTest.groovy

            given:
            repository {
                'org.test:moduleA:1.0' {
                    withModule {
                        undeclaredArtifact(classifier: 'extraFeature')
                        undeclaredArtifact(type: 'notJar')
                        hasPackaging('notJar')
                    }
                }
            }
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 28.1K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/Execute3StaticInstrumentationInDynamicGroovyWithIndyIntegrationTest.groovy

                [fromString(), "execute(command, ['FOOBAR=foobar'], file('$pwd'))", pwd, "foobar"],
                [fromGroovyString(), "execute(command, ['FOOBAR=foobar'], file('$pwd'))", pwd, "foobar"],
                [fromStringArray(), "execute(command, ['FOOBAR=foobar'], file('$pwd'))", pwd, "foobar"],
                [fromStringList(), "execute(command, ['FOOBAR=foobar'], file('$pwd'))", pwd, "foobar"],
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/ProcessInstrumentationInJavaIntegrationTest.groovy

            fromStringArray() | "ProcessGroovyMethods.execute(command, new String[] {\"FOOBAR=foobar\"}, project.file(\"$pwd\"))" | pwd               | "foobar"
            fromStringList()  | "ProcessGroovyMethods.execute(command, new String[] {\"FOOBAR=foobar\"}, project.file(\"$pwd\"))" | pwd               | "foobar"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/RuntimeExec3InstrumentationInDynamicGroovyWithIndyIntegrationTest.groovy

                [fromString(), "Runtime.getRuntime().exec(command, new String[] {'FOOBAR=foobar'}, file('$pwd'))", pwd, "foobar"],
                [fromGroovyString(), "Runtime.getRuntime().exec(command, new String[] {'FOOBAR=foobar'}, file('$pwd'))", pwd, "foobar"],
                [fromStringArray(), "Runtime.getRuntime().exec(command, new String[] {'FOOBAR=foobar'}, file('$pwd'))", pwd, "foobar"],
                // Null argument handling
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  10. pkg/config/model_test.go

    			},
    		},
    		// mock type
    		{
    			input: &config.MockConfig{Key: "foobar"},
    			mp: map[string]any{
    				"key": "foobar",
    			},
    		},
    		// XDS type, to test golang/proto
    		{
    			input: &cluster.Cluster{Name: "foobar"},
    			mp: map[string]any{
    				"name": "foobar",
    			},
    		},
    		// Random struct
    		{
    			input: &TestStruct{Name: "foobar"},
    			mp: map[string]any{
    				"name": "foobar",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 17:37:32 UTC 2024
    - 7.9K bytes
    - Viewed (0)
Back to top