Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 100 for Blah (0.03 sec)

  1. pkg/scheduler/framework/plugins/noderesources/balanced_allocation_test.go

    						"nvidia.com/gpu":  resource.MustParse("3"),
    					},
    				},
    			},
    		},
    		NodeName: "node1",
    	}
    	labels1 := map[string]string{
    		"foo": "bar",
    		"baz": "blah",
    	}
    	labels2 := map[string]string{
    		"bar": "foo",
    		"baz": "blah",
    	}
    	cpuOnly := v1.PodSpec{
    		NodeName: "node1",
    		Containers: []v1.Container{
    			{
    				Resources: v1.ResourceRequirements{
    					Requests: v1.ResourceList{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  2. src/internal/coverage/pods/pods_test.go

    			}
    			rv += "\n"
    		}
    		return rv + "]"
    	}
    
    	// Create a couple of directories.
    	o1 := mkdir("o1", 0777)
    	o2 := mkdir("o2", 0777)
    
    	// Add some random files (not coverage related)
    	mkfile(o1, "blah.txt")
    	mkfile(o1, "something.exe")
    
    	// Add a meta-data file with two counter files to first dir.
    	mkmeta(o1, "m1")
    	mkcounter(o1, "m1", 1, 42)
    	mkcounter(o1, "m1", 2, 41)
    	mkcounter(o1, "m1", 2, 40)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 31 14:00:17 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  3. src/cmd/link/link_test.go

    	}
    
    	t.Parallel()
    
    	tmpdir := t.TempDir()
    
    	src := filepath.Join(tmpdir, "blah.go")
    	err := os.WriteFile(src, []byte(Issue34788src), 0666)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	obj := filepath.Join(tmpdir, "blah.o")
    	cmd := testenv.Command(t, testenv.GoToolPath(t), "tool", "compile", "-p=blah", "-o", obj, src)
    	cmd.Env = append(os.Environ(), "GOARCH=386", "GOOS=android")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:02 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  4. src/net/http/httputil/dump_test.go

    			strings.Repeat("a", 8193),
    	},
    
    	{
    		GetReq: func() *http.Request {
    			return mustReadRequest("GET http://foo.com/ HTTP/1.1\r\n" +
    				"User-Agent: blah\r\n\r\n")
    		},
    		NoBody: true,
    		WantDump: "GET http://foo.com/ HTTP/1.1\r\n" +
    			"User-Agent: blah\r\n\r\n",
    	},
    
    	// Issue #7215. DumpRequest should return the "Content-Length" when set
    	{
    		GetReq: func() *http.Request {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 17:34:07 UTC 2022
    - 12.5K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/shell.go

    	// when the relative path is shorter.
    	for {
    		// Note that dir starts out long, something like
    		// /foo/bar/baz/root/a
    		// The target string to be reduced is something like
    		// (blah-blah-blah) /foo/bar/baz/root/sibling/whatever.go:blah:blah
    		// /foo/bar/baz/root/a doesn't match /foo/bar/baz/root/sibling, but the prefix
    		// /foo/bar/baz/root does.  And there may be other niblings sharing shorter
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/collect/ContiguousSetTest.java

        assertFalse(set.contains(0));
        assertTrue(set.contains(1));
        assertTrue(set.contains(2));
        assertTrue(set.contains(3));
        assertFalse(set.contains(4));
        assertFalse(set.contains((Object) "blah"));
      }
    
      public void testContainsAll() {
        ImmutableSortedSet<Integer> set = ContiguousSet.create(Range.closed(1, 3), integers());
        for (Set<Integer> subset : Sets.powerSet(ImmutableSet.of(1, 2, 3))) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 19 20:34:55 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  7. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportVariantDetailsIntegrationTest.groovy

                }
    
                dependencies {
                    implementation 'org.test:a:1.0'
                }
    
                configurations.compileClasspath.attributes.attribute(Attribute.of('org.gradle.blah', String), 'something')
            """
    
            when:
            run "dependencyInsight", "--dependency", "leaf"
    
            then:
            outputContains """org.test:leaf:1.0
      Variant api:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h.pump

    // or "pattern", whichever you prefer to think.
    
    TEST_P(FooTest, DoesBlah) {
      // Inside a test, access the test parameter with the GetParam() method
      // of the TestWithParam<T> class:
      EXPECT_TRUE(foo.Blah(GetParam()));
      ...
    }
    
    TEST_P(FooTest, HasBlahBlah) {
      ...
    }
    
    // Finally, you can use INSTANTIATE_TEST_CASE_P to instantiate the test
    // case with any set of parameters you want. Google Test defines a number
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  9. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h.pump

    // or "pattern", whichever you prefer to think.
    
    TEST_P(FooTest, DoesBlah) {
      // Inside a test, access the test parameter with the GetParam() method
      // of the TestWithParam<T> class:
      EXPECT_TRUE(foo.Blah(GetParam()));
      ...
    }
    
    TEST_P(FooTest, HasBlahBlah) {
      ...
    }
    
    // Finally, you can use INSTANTIATE_TEST_CASE_P to instantiate the test
    // case with any set of parameters you want. Google Test defines a number
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  10. src/debug/dwarf/line_test.go

    	// tests are to cover cases that might come up for Windows Go
    	// binaries.
    	{`c:/workdir/go/src/x`, `y.go`, `c:/workdir/go/src/x/y.go`},
    	{`d:/some/thing/`, `b.go`, `d:/some/thing/b.go`},
    	{`e:\blah\`, `foo.c`, `e:\blah\foo.c`},
    
    	// The following are "best effort". We shouldn't see relative
    	// base directories in DWARF, but these test that pathJoin
    	// doesn't fail miserably if it sees one.
    	{`C:`, `a`, `C:a`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 20:34:36 UTC 2023
    - 14.5K bytes
    - Viewed (0)
Back to top