Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 59 for vers (0.1 sec)

  1. cmd/peer-rest-server.go

    func (s *peerRESTServer) StartProfilingHandler(w http.ResponseWriter, r *http.Request) {
    	if !s.IsValid(w, r) {
    		s.writeErrorResponse(w, errors.New("Invalid request"))
    		return
    	}
    
    	vars := mux.Vars(r)
    	profiles := strings.Split(vars[peerRESTProfiler], ",")
    	if len(profiles) == 0 {
    		s.writeErrorResponse(w, errors.New("profiler name is missing"))
    		return
    	}
    	globalProfilerMu.Lock()
    	defer globalProfilerMu.Unlock()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/debug.go

    					state.varParts[n] = []SlotID{SlotID(len(state.slots) - 1)}
    					state.vars = append(state.vars, n)
    				}
    			}
    		}
    	}
    
    	// Fill in the var<->slot mappings.
    	if cap(state.varSlots) < len(state.vars) {
    		state.varSlots = make([][]SlotID, len(state.vars))
    	} else {
    		state.varSlots = state.varSlots[:len(state.vars)]
    		for i := range state.varSlots {
    			state.varSlots[i] = state.varSlots[i][:0]
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  3. pkg/apis/flowcontrol/v1beta3/zz_generated.conversion.go

    }
    
    func autoConvert_v1beta3_NonResourcePolicyRule_To_flowcontrol_NonResourcePolicyRule(in *v1beta3.NonResourcePolicyRule, out *flowcontrol.NonResourcePolicyRule, s conversion.Scope) error {
    	out.Verbs = *(*[]string)(unsafe.Pointer(&in.Verbs))
    	out.NonResourceURLs = *(*[]string)(unsafe.Pointer(&in.NonResourceURLs))
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:41 UTC 2023
    - 53.1K bytes
    - Viewed (0)
  4. pkg/apis/flowcontrol/v1/zz_generated.conversion.go

    }
    
    func autoConvert_v1_NonResourcePolicyRule_To_flowcontrol_NonResourcePolicyRule(in *v1.NonResourcePolicyRule, out *flowcontrol.NonResourcePolicyRule, s conversion.Scope) error {
    	out.Verbs = *(*[]string)(unsafe.Pointer(&in.Verbs))
    	out.NonResourceURLs = *(*[]string)(unsafe.Pointer(&in.NonResourceURLs))
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:41 UTC 2023
    - 52.4K bytes
    - Viewed (0)
  5. pkg/apis/flowcontrol/v1beta1/zz_generated.conversion.go

    	return nil
    }
    
    func autoConvert_v1beta1_NonResourcePolicyRule_To_flowcontrol_NonResourcePolicyRule(in *v1beta1.NonResourcePolicyRule, out *flowcontrol.NonResourcePolicyRule, s conversion.Scope) error {
    	out.Verbs = *(*[]string)(unsafe.Pointer(&in.Verbs))
    	out.NonResourceURLs = *(*[]string)(unsafe.Pointer(&in.NonResourceURLs))
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 01:00:06 UTC 2023
    - 53.5K bytes
    - Viewed (0)
  6. pkg/apis/flowcontrol/v1beta2/zz_generated.conversion.go

    	return nil
    }
    
    func autoConvert_v1beta2_NonResourcePolicyRule_To_flowcontrol_NonResourcePolicyRule(in *v1beta2.NonResourcePolicyRule, out *flowcontrol.NonResourcePolicyRule, s conversion.Scope) error {
    	out.Verbs = *(*[]string)(unsafe.Pointer(&in.Verbs))
    	out.NonResourceURLs = *(*[]string)(unsafe.Pointer(&in.NonResourceURLs))
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 01:00:06 UTC 2023
    - 53.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/apps/v1/types.go

    )
    
    // +genclient
    // +genclient:method=GetScale,verb=get,subresource=scale,result=k8s.io/api/autoscaling/v1.Scale
    // +genclient:method=UpdateScale,verb=update,subresource=scale,input=k8s.io/api/autoscaling/v1.Scale,result=k8s.io/api/autoscaling/v1.Scale
    // +genclient:method=ApplyScale,verb=apply,subresource=scale,input=k8s.io/api/autoscaling/v1.Scale,result=k8s.io/api/autoscaling/v1.Scale
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  8. src/fmt/fmt_test.go

    	// Issue 8965.
    	{"%v", reflect.ValueOf(A{}).Field(0).String(), "<int Value>"}, // Equivalent to the old way.
    	{"%v", reflect.ValueOf(A{}).Field(0), "0"},                    // Sees inside the field.
    
    	// verbs apply to the extracted value too.
    	{"%s", reflect.ValueOf("hello"), "hello"},
    	{"%q", reflect.ValueOf("hello"), `"hello"`},
    	{"%#04x", reflect.ValueOf(256), "0x0100"},
    
    	// invalid reflect.Value doesn't crash.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/rbac/v1/generated.pb.go

    			i = encodeVarintGenerated(dAtA, i, uint64(len(m.APIGroups[iNdEx])))
    			i--
    			dAtA[i] = 0x12
    		}
    	}
    	if len(m.Verbs) > 0 {
    		for iNdEx := len(m.Verbs) - 1; iNdEx >= 0; iNdEx-- {
    			i -= len(m.Verbs[iNdEx])
    			copy(dAtA[i:], m.Verbs[iNdEx])
    			i = encodeVarintGenerated(dAtA, i, uint64(len(m.Verbs[iNdEx])))
    			i--
    			dAtA[i] = 0xa
    		}
    	}
    	return len(dAtA) - i, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/rbac/v1beta1/generated.pb.go

    			i = encodeVarintGenerated(dAtA, i, uint64(len(m.APIGroups[iNdEx])))
    			i--
    			dAtA[i] = 0x12
    		}
    	}
    	if len(m.Verbs) > 0 {
    		for iNdEx := len(m.Verbs) - 1; iNdEx >= 0; iNdEx-- {
    			i -= len(m.Verbs[iNdEx])
    			copy(dAtA[i:], m.Verbs[iNdEx])
    			i = encodeVarintGenerated(dAtA, i, uint64(len(m.Verbs[iNdEx])))
    			i--
    			dAtA[i] = 0xa
    		}
    	}
    	return len(dAtA) - i, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
Back to top