Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 287 for index (0.09 sec)

  1. src/net/http/fs.go

    			return
    		}
    
    		// use contents of index.html for directory, if present
    		index := strings.TrimSuffix(name, "/") + indexPage
    		ff, err := fs.Open(index)
    		if err == nil {
    			defer ff.Close()
    			dd, err := ff.Stat()
    			if err == nil {
    				d = dd
    				f = ff
    			}
    		}
    	}
    
    	// Still a directory? (we didn't find an index.html file)
    	if d.IsDir() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 17:06:47 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  2. cmd/bucket-listobjects-handlers.go

    	return subToken, false
    }
    
    func proxyRequestByNodeIndex(ctx context.Context, w http.ResponseWriter, r *http.Request, index int) (success bool) {
    	if len(globalProxyEndpoints) == 0 {
    		return false
    	}
    	if index < 0 || index >= len(globalProxyEndpoints) {
    		return false
    	}
    	ep := globalProxyEndpoints[index]
    	if ep.IsLocal {
    		return false
    	}
    	return proxyRequest(ctx, w, r, ep)
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  3. pkg/controller/tainteviction/taint_eviction_test.go

    		}
    		return rPods, nil
    	}
    }
    
    func createNoExecuteTaint(index int) corev1.Taint {
    	now := metav1.Now()
    	return corev1.Taint{
    		Key:       "testTaint" + fmt.Sprintf("%v", index),
    		Value:     "test" + fmt.Sprintf("%v", index),
    		Effect:    corev1.TaintEffectNoExecute,
    		TimeAdded: &now,
    	}
    }
    
    func addToleration(pod *corev1.Pod, index int, duration int64) *corev1.Pod {
    	if pod.Annotations == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  4. src/math/rand/rand_test.go

    	if i := compareUint32Slices(kn[0:], testKn); i >= 0 {
    		t.Errorf("kn disagrees at index %v; %v != %v", i, kn[i], testKn[i])
    	}
    	if i := compareFloat32Slices(wn[0:], testWn); i >= 0 {
    		t.Errorf("wn disagrees at index %v; %v != %v", i, wn[i], testWn[i])
    	}
    	if i := compareFloat32Slices(fn[0:], testFn); i >= 0 {
    		t.Errorf("fn disagrees at index %v; %v != %v", i, fn[i], testFn[i])
    	}
    }
    
    func TestExpTables(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  5. pkg/controller/job/pod_failure_policy_test.go

    									ExitCode: 2,
    								},
    							},
    						},
    					},
    				},
    			},
    			wantJobFailureMessage: ptr.To("Container main-container for pod default/mypod failed with exit code 2 matching FailJob rule at index 1"),
    			wantCountFailed:       true,
    			wantAction:            &failJob,
    		},
    		"unknown action for rule matching by pod conditions - skip rule with unknown action": {
    			podFailurePolicy: &batch.PodFailurePolicy{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  6. src/math/rand/v2/rand_test.go

    	if i := compareUint32Slices(kn[0:], testKn); i >= 0 {
    		t.Errorf("kn disagrees at index %v; %v != %v", i, kn[i], testKn[i])
    	}
    	if i := compareFloat32Slices(wn[0:], testWn); i >= 0 {
    		t.Errorf("wn disagrees at index %v; %v != %v", i, wn[i], testWn[i])
    	}
    	if i := compareFloat32Slices(fn[0:], testFn); i >= 0 {
    		t.Errorf("fn disagrees at index %v; %v != %v", i, fn[i], testFn[i])
    	}
    }
    
    func TestExpTables(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/genericOps.go

    	// Like Arg, these are generic ops that survive lowering. AuxInt is a register index, and the actual output register for each index is defined by the architecture.
    	// AuxInt = integer argument index (not a register number). ABI-specified spill loc obtained from function
    	{name: "ArgIntReg", aux: "NameOffsetInt8", zeroWidth: true},   // argument to the function in an int reg.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  8. pkg/apis/resource/validation/validation_resourceclaim_test.go

    				field.Required(field.NewPath("status", "allocation", "resourceHandles").Index(0).Child("structuredData", "results").Index(1), "exactly one structured model field must be set"),
    			},
    			oldClaim: validClaim,
    			update: func(claim *resource.ResourceClaim) *resource.ResourceClaim {
    				claim.Status.DriverName = "valid"
    				claim.Status.Allocation = &resource.AllocationResult{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  9. pilot/pkg/model/endpointshards.go

    type EndpointIndexUpdater struct {
    	Index *EndpointIndex
    	// Optional; if set, we will trigger ConfigUpdates in response to EDS updates as appropriate
    	ConfigUpdateFunc func(req *PushRequest)
    }
    
    var _ XDSUpdater = &EndpointIndexUpdater{}
    
    func NewEndpointIndexUpdater(ei *EndpointIndex) *EndpointIndexUpdater {
    	return &EndpointIndexUpdater{Index: ei}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/interfaces.go

    	ResourceVersion uint64
    }
    
    // IndexerFunc is a function that for a given object computes
    // `<value of an index>` for a particular `<index>`.
    type IndexerFunc func(obj runtime.Object) string
    
    // IndexerFuncs is a mapping from `<index name>` to function that
    // for a given object computes `<value for that index>`.
    type IndexerFuncs map[string]IndexerFunc
    
    // Everything accepts all objects.
    var Everything = SelectionPredicate{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:53:48 UTC 2024
    - 14.8K bytes
    - Viewed (0)
Back to top