Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for notbar (0.12 sec)

  1. 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)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/ProcessInstrumentationInStaticGroovyIntegrationTest.groovy

            fromObjectList()   | "command.execute(new String[] {'FOOBAR=foobar'}, file('$pwd'))"                       | pwd               | "foobar"
            fromString()       | "command.execute(['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
    - 12.2K bytes
    - Viewed (0)
  3. platforms/core-configuration/declarative-dsl-provider/src/testFixtures/groovy/org/gradle/internal/declarativedsl/settings/SoftwareTypeFixture.groovy

                        public Foo() { }
    
                        @Restricted
                        public abstract Property<String> getBar();
                    }
    
                    @Override
                    public String toString() {
                        return "id = " + getId().get() + "\\nbar = " + getFoo().getBar().get() + (isFooConfigured ? "\\n(foo is configured)" : "");
                    }
                }
            """
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 16:02:26 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  4. docs/site-replication/run-multi-site-minio-idp.sh

    	echo "expected both peers to have same information"
    	exit_1
    }
    
    ./mc admin user add minio1 foobar foo12345
    
    ## add foobar-g group with foobar
    ./mc admin group add minio2 foobar-g foobar
    
    ./mc admin policy attach minio1 consoleAdmin --user=foobar
    sleep 5
    
    ./mc admin user info minio2 foobar
    
    ./mc admin group info minio1 foobar-g
    
    ./mc admin policy create minio1 rw ./docs/site-replication/rw.json
    
    sleep 5
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 12K bytes
    - Viewed (0)
  5. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/jvm/JvmTest.groovy

            _ * os.findInPath("foobar") >> new File('/path/foobar.exe')
    
            when:
            def exec = jvm.getExecutable("foobar")
    
            then:
            exec == new File('/path/foobar.exe')
        }
    
        def "falls back to current dir if executable cannot be found anywhere"() {
            given:
            def home = tmpDir.createDir("home")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 00:09:57 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  6. platforms/core-configuration/declarative-dsl-tooling-builders/src/crossVersionTest/groovy/org/gradle/declarative/dsl/tooling/builders/r89/DeclarativeDslToolingModelsCrossVersionTest.groovy

                    }
    
                    public abstract static class Foo {
                        public Foo() {
                            this.getBar().convention("nothing");
                        }
    
                        @Restricted
                        public abstract Property<String> getBar();
                    }
                }
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 11:32:11 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  7. pkg/proxy/util/utils_test.go

    func TestValidateWorks(t *testing.T) {
    	if isValidEndpoint("", 0) {
    		t.Errorf("Didn't fail for empty set")
    	}
    	if isValidEndpoint("foobar", 0) {
    		t.Errorf("Didn't fail with invalid port")
    	}
    	if isValidEndpoint("foobar", -1) {
    		t.Errorf("Didn't fail with a negative port")
    	}
    	if !isValidEndpoint("foobar", 8080) {
    		t.Errorf("Failed a valid config.")
    	}
    }
    
    func TestShouldSkipService(t *testing.T) {
    	testCases := []struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 11:57:43 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/preflight/checks_test.go

    		{[]Checker{InPathCheck{executable: "foobarbaz", mandatory: true, exec: exec.New()}}, false, ""},
    		{[]Checker{InPathCheck{executable: "foobar", mandatory: false, exec: exec.New(), suggestion: "install foobar"}}, true, "\t[WARNING FileExisting-foobar]: foobar not found in system path\nSuggestion: install foobar\n"},
    	}
    	for _, rt := range tokenTest {
    		buf := new(bytes.Buffer)
    		actual := RunChecks(rt.p, buf, sets.New[string]())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  9. src/encoding/base32/base32_test.go

    		"ON2X\nEZ\rI=",
    		"ON2XEZ\nI=",
    		"ON2XEZI\n=",
    	}
    	testStringEncoding(t, "sure", examples)
    
    	// Each of these should decode to the string "foobar", without errors.
    	examples = []string{
    		"MZXW6YTBOI======",
    		"MZXW6YTBOI=\r\n=====",
    	}
    	testStringEncoding(t, "foobar", examples)
    }
    
    func TestDecoderIssue4779(t *testing.T) {
    	encoded := `JRXXEZLNEBUXA43VNUQGI33MN5ZCA43JOQQGC3LFOQWCAY3PNZZWKY3UMV2HK4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 16:25:54 UTC 2024
    - 26K bytes
    - Viewed (0)
  10. src/net/http/cookie_test.go

    	log.SetOutput(&logbuf)
    
    	tests := []struct {
    		in     string
    		quoted bool
    		want   string
    	}{
    		{"foo", false, "foo"},
    		{"foo;bar", false, "foobar"},
    		{"foo\\bar", false, "foobar"},
    		{"foo\"bar", false, "foobar"},
    		{"\x00\x7e\x7f\x80", false, "\x7e"},
    		{`withquotes`, true, `"withquotes"`},
    		{`"withquotes"`, true, `"withquotes"`}, // double quotes are not valid octets
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:33:05 UTC 2024
    - 26.2K bytes
    - Viewed (0)
Back to top