Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 269 for hamster (0.13 sec)

  1. staging/src/k8s.io/apiserver/pkg/cel/mutation/optional_test.go

    			// still require the field to be declared in the schema.
    			//
    			// Quoting from
    			// https://github.com/google/cel-spec/blob/master/doc/langdef.md#field-selection
    			//
    			// To test for the presence of a field, the boolean-valued macro has(e.f) can be used.
    			//
    			// 2. If e evaluates to a message and f is not a declared field for the message,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 25 21:52:39 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  2. internal/event/target/kafka_scram_client_contrib.go

    	}
    }
    
    // KafkaSHA256 is a function that returns a crypto/sha256 hasher and should be used
    // to create Client objects configured for SHA-256 hashing.
    var KafkaSHA256 scram.HashGeneratorFcn = sha256.New
    
    // KafkaSHA512 is a function that returns a crypto/sha512 hasher and should be used
    // to create Client objects configured for SHA-512 hashing.
    var KafkaSHA512 scram.HashGeneratorFcn = sha512.New
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Nov 09 04:04:01 UTC 2023
    - 3.2K bytes
    - Viewed (1)
  3. pkg/controlplane/controller/kubernetesservice/controller.go

    		select {
    		case <-stopCh: // from Start
    		case <-c.stopCh: // from Stop
    		}
    	}()
    
    	go c.Run(localStopCh)
    }
    
    // Stop cleans up this API Servers endpoint reconciliation leases so another master can take over more quickly.
    func (c *Controller) Stop() {
    	c.lock.Lock()
    	defer c.lock.Unlock()
    
    	select {
    	case <-c.stopCh:
    		return // only close once
    	default:
    		close(c.stopCh)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 16 16:33:01 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  4. pkg/volume/util/metrics.go

    const (
    	statusSuccess     = "success"
    	statusFailUnknown = "fail-unknown"
    )
    
    /*
     * By default, all the following metrics are defined as falling under
     * ALPHA stability level https://github.com/kubernetes/enhancements/blob/master/keps/sig-instrumentation/1209-metrics-stability/kubernetes-control-plane-metrics-stability.md#stability-classes)
     *
     * Promoting the stability level of the metric is a responsibility of the component owner, since it
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 23 23:05:31 UTC 2022
    - 5.8K bytes
    - Viewed (0)
  5. pkg/kube/apimirror/probe.go

    	Port int32 `json:"port" protobuf:"bytes,1,opt,name=port"`
    
    	// Service is the name of the service to place in the gRPC HealthCheckRequest
    	// (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md).
    	//
    	// If this is not specified, the default behavior is defined by gRPC.
    	// +optional
    	// +default=""
    	Service *string `json:"service" protobuf:"bytes,2,opt,name=service"`
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  6. test/fixedbugs/bug369.go

    // Copyright 2011 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test that compiling with optimization turned on produces faster code.
    
    package main
    
    import (
    	"fmt"
    	"io/ioutil"
    	"os"
    	"os/exec"
    	"path/filepath"
    )
    
    func main() {
    	err := os.Chdir(filepath.Join(".", "fixedbugs", "bug369.dir"))
    	check(err)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  7. cmd/kube-controller-manager/app/config/config.go

    	Authentication apiserver.AuthenticationInfo
    	Authorization  apiserver.AuthorizationInfo
    
    	// the general kube client
    	Client *clientset.Clientset
    
    	// the rest config for the master
    	Kubeconfig *restclient.Config
    
    	EventBroadcaster record.EventBroadcaster
    	EventRecorder    record.EventRecorder
    }
    
    type completedConfig struct {
    	*Config
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 31 09:32:21 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/cacher/metrics/metrics.go

    )
    
    const (
    	namespace = "apiserver"
    	subsystem = "watch_cache"
    )
    
    /*
     * By default, all the following metrics are defined as falling under
     * ALPHA stability level https://github.com/kubernetes/enhancements/blob/master/keps/sig-instrumentation/1209-metrics-stability/kubernetes-control-plane-metrics-stability.md#stability-classes)
     *
     * Promoting the stability level of the metric is a responsibility of the component owner, since it
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 07:39:23 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  9. src/image/color/ycbcr.go

    	//
    	// cb := (-11056*r1 - 21712*g1 + 32768*b1 + 257<<15) >> 16
    	// if cb < 0 {
    	//     cb = 0
    	// } else if cb > 0xff {
    	//     cb = ^int32(0)
    	// }
    	//
    	// but uses fewer branches and is faster.
    	// Note that the uint8 type conversion in the return
    	// statement will convert ^int32(0) to 0xff.
    	// The code below to compute cr uses a similar pattern.
    	//
    	// Note that -11056 - 21712 + 32768 equals 0.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/pass.go

    // Inferno utils/6l/pass.c
    // https://bitbucket.org/inferno-os/inferno-os/src/master/utils/6l/pass.c
    //
    //	Copyright © 1994-1999 Lucent Technologies Inc.  All rights reserved.
    //	Portions Copyright © 1995-1997 C H Forsyth (******@****.***)
    //	Portions Copyright © 1997-1999 Vita Nuova Limited
    //	Portions Copyright © 2000-2007 Vita Nuova Holdings Limited (www.vitanuova.com)
    //	Portions Copyright © 2004,2006 Bruce Ellis
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 01:26:58 UTC 2023
    - 5K bytes
    - Viewed (0)
Back to top