Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for Implementation (0.23 sec)

  1. src/reflect/value.go

    				default:
    					panic("unknown ABI part kind")
    				}
    			}
    			ret[i] = Value{tv, s, flagIndir | flag(tv.Kind())}
    		}
    	}
    
    	return ret
    }
    
    // callReflect is the call implementation used by a function
    // returned by MakeFunc. In many ways it is the opposite of the
    // method Value.call above. The method above converts a call using Values
    // into a call of a function with a concrete argument frame, while
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/runtime/framework_test.go

    func newQueueSortPlugin(_ context.Context, _ runtime.Object, _ framework.Handle) (framework.Plugin, error) {
    	return &TestQueueSortPlugin{}, nil
    }
    
    // TestQueueSortPlugin is a no-op implementation for QueueSort extension point.
    type TestQueueSortPlugin struct{}
    
    func (pl *TestQueueSortPlugin) Name() string {
    	return queueSortPlugin
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 103K bytes
    - Viewed (0)
  3. cmd/object-handlers.go

    			w.Header()[header] = []string{strings.Join(v, ",")}
    		}
    	}
    }
    
    // SelectObjectContentHandler - GET Object?select
    // ----------
    // This implementation of the GET operation retrieves object content based
    // on an SQL expression. In the request, along with the sql expression, you must
    // also specify a data serialization format (JSON, CSV) of the object.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  4. src/runtime/proc.go

    		ready(gp, traceskip, true)
    	})
    }
    
    //go:nosplit
    func acquireSudog() *sudog {
    	// Delicate dance: the semaphore implementation calls
    	// acquireSudog, acquireSudog calls new(sudog),
    	// new calls malloc, malloc can call the garbage collector,
    	// and the garbage collector calls the semaphore implementation
    	// in stopTheWorld.
    	// Break the cycle by doing acquirem/releasem around new(sudog).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet.go

    	klet.setNodeStatusFuncs = klet.defaultNodeStatusFuncs()
    
    	return klet, nil
    }
    
    type serviceLister interface {
    	List(labels.Selector) ([]*v1.Service, error)
    }
    
    // Kubelet is the main kubelet implementation.
    type Kubelet struct {
    	kubeletConfiguration kubeletconfiginternal.KubeletConfiguration
    
    	// hostname is the hostname the kubelet detected or was given via flag/config
    	hostname string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  6. src/cmd/go/internal/work/exec.go

    			if err := c.Close(); err != nil {
    				base.Fatalf("go: failed to trim cache: %v", err)
    			}
    		}()
    	}
    
    	// Build list of all actions, assigning depth-first post-order priority.
    	// The original implementation here was a true queue
    	// (using a channel) but it had the effect of getting
    	// distracted by low-level leaf actions to the detriment
    	// of completing higher-level actions. The order of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  7. src/reflect/all_test.go

    	t.Fatalf("did not panic")
    }
    
    // Given
    //	type Outer struct {
    //		*Inner
    //		...
    //	}
    // the compiler generates the implementation of (*Outer).M dispatching to the embedded Inner.
    // The implementation is logically:
    //	func (p *Outer) M() {
    //		(p.Inner).M()
    //	}
    // but since the only change here is the replacement of one pointer receiver with another,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  8. src/net/http/server.go

    type ResponseWriter interface {
    	// Header returns the header map that will be sent by
    	// [ResponseWriter.WriteHeader]. The [Header] map also is the mechanism with which
    	// [Handler] implementations can set HTTP trailers.
    	//
    	// Changing the header map after a call to [ResponseWriter.WriteHeader] (or
    	// [ResponseWriter.Write]) has no effect unless the HTTP status code was of 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/cmd/go/internal/load/pkg.go

    }
    
    // PackagesAndErrorsOutsideModule is like PackagesAndErrors but runs in
    // module-aware mode and ignores the go.mod file in the current directory or any
    // parent directory, if there is one. This is used in the implementation of 'go
    // install pkg@version' and other commands that support similar forms.
    //
    // modload.ForceUseModules must be true, and modload.RootMode must be NoRoot
    // before calling this function.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  10. pkg/config/validation/validation.go

    	return
    }
    
    // Copied from https://github.com/envoyproxy/envoy/blob/5451efd9b8f8a444431197050e45ba974ed4e9d8/source/common/common/utility.cc#L601-L615
    // to ensure we 100% match Envoy's implementation
    func isPrime(x uint64) bool {
    	if x != 0 && x < 4 {
    		return true // eliminates special-casing 2.
    	} else if (x & 1) == 0 {
    		return false // eliminates even numbers >2.
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
Back to top