Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for 404s (0.15 sec)

  1. pkg/kubelet/server/server_test.go

    		if err != nil {
    			t.Errorf("Got error POSTing: %v", err)
    		}
    		assert.Equal(t, resp.StatusCode, 200)
    	})
    
    	// Now test for 404 if checkpointing support is explicitly disabled.
    	fw.testHTTPServer.Close()
    	fw = setupTest(false)
    	defer fw.testHTTPServer.Close()
    	setPodByNameFunc(fw, podNamespace, podName, expectedContainerName)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  2. test/fixedbugs/issue30116.out

                                   slice[4:0:0] runtime error: slice bounds out of range [4:0:]
                                   slice[4:0:3] runtime error: slice bounds out of range [4:0:]
                                   slice[4:0:4] runtime error: slice bounds out of range [::4] with capacity 3
                          slice[4:0:9876543210] runtime error: slice bounds out of range [::9876543210] with capacity 3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 17:33:38 UTC 2019
    - 53.8K bytes
    - Viewed (0)
  3. cmd/object-api-listobjects_test.go

    		},
    		// ListObjectsResult-39 list with prefix match 1 level deep
    		39: {
    			IsTruncated: false,
    			Objects: []ObjectInfo{
    				{Name: "201910/foo/bar/xl.meta/1.txt"},
    			},
    		},
    		// ListObjectsResult-40
    		40: {
    			IsTruncated: false,
    			Objects: []ObjectInfo{
    				{Name: "aaa"},
    				{Name: "ccc"},
    			},
    			Prefixes: []string{"bbb_"},
    		},
    	}
    
    	testCases := []struct {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 11:07:40 UTC 2024
    - 73.1K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GradleResolveVisitor.java

            // we have for example a class name A, are in class X
            // and there is a nested class A$X. we want to be able
            // to access that class directly, so A becomes a valid
            // name in X.
            // GROOVY-4043: Do this check up the hierarchy, if needed
            Map<String, ClassNode> classHierarchy = new LinkedHashMap<String, ClassNode>();
            ClassNode val;
            for (ClassNode classToCheck = currentClass;
                /*
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  5. src/time/time_test.go

    	{"-0", 0},
    	{"+0", 0},
    	// decimal
    	{"5.0s", 5 * Second},
    	{"5.6s", 5*Second + 600*Millisecond},
    	{"5.s", 5 * Second},
    	{".5s", 500 * Millisecond},
    	{"1.0s", 1 * Second},
    	{"1.00s", 1 * Second},
    	{"1.004s", 1*Second + 4*Millisecond},
    	{"1.0040s", 1*Second + 4*Millisecond},
    	{"100.00100s", 100*Second + 1*Millisecond},
    	// different units
    	{"10ns", 10 * Nanosecond},
    	{"11us", 11 * Microsecond},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/celcoststability_test.go

    				"self.enumStr == 'Pending'":                3,
    				"self.enumStr in ['Pending', 'Available']": 2,
    			},
    		},
    		{name: "conversions",
    			obj:    objs(int64(10), 10.0, 10.49, 10.5, true, "10", "MTA=", "3723.004s", "1h2m3s4ms", "2011-08-18T19:03:37.01+01:00", "2011-08-18T19:03:37.01+01:00", "2011-08-18T00:00:00Z", "2011-08-18"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:20:16 UTC 2024
    - 80.2K bytes
    - Viewed (0)
  7. src/runtime/pprof/pprof_test.go

    		wantSamples: []*profile.Sample{
    			{Value: []int64{30, 30 * period}, Location: []*profile.Location{{ID: 1}, {ID: 1}, {ID: 2}}},
    			{Value: []int64{40, 40 * period}, Location: []*profile.Location{{ID: 1}, {ID: 2}}},
    		},
    	}, {
    		name: "recursion_chain_inline",
    		input: []uint64{
    			3, 0, 500, // hz = 500. Must match the period.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  8. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

            assertEquals(1, ((List<?>) pom.getValue("dependencies[1]/exclusions")).size());
            assertEquals("commons-lang", pom.getValue("dependencies[1]/exclusions[1]/groupId"));
        }
    
        /** MNG-4040 */
        @Test
        void testProfileModuleInheritance() throws Exception {
            PomTestWrapper pom = this.buildPom("profile-module-inheritance/sub", "dist");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 93.2K bytes
    - Viewed (0)
  9. src/go/types/expr.go

    		goto Error
    
    	case *ast.BasicLit:
    		switch e.Kind {
    		case token.INT, token.FLOAT, token.IMAG:
    			check.langCompat(e)
    			// The max. mantissa precision for untyped numeric values
    			// is 512 bits, or 4048 bits for each of the two integer
    			// parts of a fraction for floating-point numbers that are
    			// represented accurately in the go/constant package.
    			// Constant literals that are longer than this many bits
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  10. cmd/bucket-handlers.go

    // This operation is useful to determine if a bucket exists.
    // The operation returns a 200 OK if the bucket exists and you
    // have permission to access it. Otherwise, the operation might
    // return responses such as 404 Not Found and 403 Forbidden.
    func (api objectAPIHandlers) HeadBucketHandler(w http.ResponseWriter, r *http.Request) {
    	ctx := newContext(r, w, "HeadBucket")
    
    	defer logger.AuditLog(ctx, w, r, mustGetClaimsFromToken(r))
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
Back to top