Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 85 for Result (0.28 sec)

  1. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc_test.go

    			testutil.AssertHistogramTotalCount(t, "apiserver_authentication_jwt_authenticator_latency_seconds", map[string]string{"result": "success"}, successTestCount)
    		} else {
    			failureTestCount++
    			testutil.AssertHistogramTotalCount(t, "apiserver_authentication_jwt_authenticator_latency_seconds", map[string]string{"result": "failure"}, failureTestCount)
    		}
    	}
    }
    
    func TestUnmarshalClaimError(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 97.7K bytes
    - Viewed (0)
  2. cmd/server_test.go

    	c.Assert(response.StatusCode, http.StatusOK)
    
    	var results ListBucketsResponse
    	// parse the list bucket response.
    	decoder := xml.NewDecoder(response.Body)
    	err = decoder.Decode(&results)
    	// validating that the xml-decoding/parsing was successful.
    	c.Assert(err, nil)
    
    	// Fetch the bucket created above
    	var createdBucket Bucket
    	for _, b := range results.Buckets.Buckets {
    		if b.Name == bucketName {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 115.3K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_node_status_test.go

    			return true, nil, tc.deleteError
    		})
    		addNotImplatedReaction(kubeClient)
    
    		result := kubelet.tryRegisterWithAPIServer(tc.newNode)
    		require.Equal(t, tc.expectedResult, result, "test [%s]", tc.name)
    
    		actions := kubeClient.Actions()
    		assert.Len(t, actions, tc.expectedActions, "test [%s]", tc.name)
    
    		if tc.testSavedNode {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/data.go

    	}
    }
    
    type symNameSize struct {
    	name string
    	sz   int64
    	val  int64
    	sym  loader.Sym
    }
    
    func (state *dodataState) dodataSect(ctxt *Link, symn sym.SymKind, syms []loader.Sym) (result []loader.Sym, maxAlign int32) {
    	var head, tail, zerobase loader.Sym
    	ldr := ctxt.loader
    	sl := make([]symNameSize, len(syms))
    
    	// For ppc64, we want to interleave the .got and .toc sections
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/cluster_builder_test.go

    				service, destRule)
    
    			_ = cb.applyDestinationRule(ec, tc.clusterMode, tc.service, tc.port, eb, destRule.GetRule(), tc.serviceAcct)
    
    			result := getTLSContext(t, ec.cluster)
    			if diff := cmp.Diff(result, tc.expectTLSContext, protocmp.Transform()); diff != "" {
    				t.Errorf("got diff: `%v", diff)
    			}
    
    			if tc.enableAutoSni {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  6. src/runtime/proc.go

    	// racing with a non-spinning M in the block above, having found no
    	// work and preparing to release its P and park. Allowing that P to go
    	// idle will result in loss of work conservation (idle P while there is
    	// runnable work). This could result in complete deadlock in the
    	// unlikely event that we discover new work (from netpoll) right as we
    	// are racing with _all_ other Ps going idle.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  7. pkg/controller/podautoscaler/horizontal_test.go

    // Hence the second HPA controller reconcile cycle might return different result (comparing with the first run).
    // Current test infrastructure has a race condition, when several reconcile cycles will be performed
    //    while it should be stopped right after the first one. And the second will raise an exception
    //    because of different result.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
  8. src/net/http/server.go

    	// If [ResponseWriter.WriteHeader] has not yet been called, Write calls
    	// WriteHeader(http.StatusOK) before writing the data. If the Header
    	// does not contain a Content-Type line, Write adds a Content-Type set
    	// to the result of passing the initial 512 bytes of written data to
    	// [DetectContentType]. Additionally, if the total size of all written
    	// data is under a few KB and there are no Flush calls, the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  9. src/net/http/transport_test.go

    	res, err := c.Get(ts.URL)
    	if err != nil {
    		t.Fatal(err)
    	}
    	body, err := io.ReadAll(res.Body)
    	if err != nil {
    		t.Fatal(err)
    	}
    	if !bytes.Equal(body, rgz) {
    		t.Fatalf("Incorrect result from recursive gz:\nhave=%x\nwant=%x",
    			body, rgz)
    	}
    	if g, e := res.Header.Get("Content-Encoding"), ""; g != e {
    		t.Fatalf("Content-Encoding = %q; want %q", g, e)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet_pods_test.go

    			}
    			if tc.expectedError {
    				assert.Error(t, err, tc.name)
    			} else {
    				assert.NoError(t, err, "[%s]", tc.name)
    
    				sort.Sort(envs(result))
    				sort.Sort(envs(tc.expectedEnvs))
    				assert.Equal(t, tc.expectedEnvs, result, "[%s] env entries", tc.name)
    			}
    		})
    
    	}
    }
    
    func waitingState(cName string) v1.ContainerStatus {
    	return waitingStateWithReason(cName, "")
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
Back to top