Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 193 for ulong (0.28 sec)

  1. pkg/proxy/nftables/proxier.go

    	// EndpointPort are all safe to copy into the chain name directly. But if
    	// EndpointIP is IPv6 then it will contain colons, which aren't allowed in a chain
    	// name. IPv6 IPs are also quite long, but we can't safely truncate them (e.g. to
    	// only the final segment) because (especially for manually-created external
    	// endpoints), we can't know for sure that any part of them is redundant.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  2. cmd/kubelet/app/server.go

    	// programmer error
    	if err != nil {
    		klog.ErrorS(err, "Failed to create a new kubelet configuration")
    		os.Exit(1)
    	}
    
    	cmd := &cobra.Command{
    		Use: componentKubelet,
    		Long: `The kubelet is the primary "node agent" that runs on each
    node. It can register the node with the apiserver using one of: the hostname; a flag to
    override the hostname; or specific logic for a cloud provider.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config_test.go

    			},
    			metrics: []string{
    				"apiserver_envelope_encryption_invalid_key_id_from_status_total",
    			},
    			want: ``,
    		},
    		{
    			desc: "kmsv2 provider returns an invalid long keyID",
    			probe: &kmsv2PluginProbe{
    				name:         "test",
    				ttl:          kmsPluginHealthzNegativeTTL,
    				service:      invalidLongKeyIDService,
    				l:            &sync.Mutex{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 72.3K bytes
    - Viewed (0)
  4. cmd/iam.go

    // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    // GNU Affero General Public License for more details.
    //
    // You should have received a copy of the GNU Affero General Public License
    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package cmd
    
    import (
    	"bytes"
    	"context"
    	"encoding/base64"
    	"encoding/json"
    	"errors"
    	"fmt"
    	"math/rand"
    	"path"
    	"sort"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/buildlist.go

    // are consistent. (With a pruned module graph, this may result in upgrades to
    // other modules due to requirements that were previously pruned out.)
    //
    // expandGraph returns the updated roots, along with the module graph loaded
    // from those roots and any error encountered while loading that graph.
    // expandGraph returns non-nil requirements and a non-nil graph regardless of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  6. src/crypto/tls/tls_test.go

    		}
    
    		listener.Close()
    
    		// We're looking for a timeout during the handshake, so check that the
    		// Listener actually accepted the connection to initiate it. (If the server
    		// takes too long to accept the connection, we might cancel before the
    		// underlying net.Conn is ever dialed — without ever attempting a
    		// handshake.)
    		lconn, ok := <-acceptc
    		if ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  7. src/crypto/tls/conn.go

    			// Lucky13, the data past paddingLen (which is secret) is passed to
    			// the MAC function as extra data, to be fed into the HMAC after
    			// computing the digest. This makes the MAC roughly constant time as
    			// long as the digest computation is constant time and does not
    			// affect the subsequent write, modulo cache effects.
    			paddingLen, paddingGood = extractPadding(payload)
    		default:
    			panic("unknown cipher type")
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    Supply a `FileResolver` to the overloaded version of this method instead.
    
    ==== Groovydoc API Cleanup
    
    The deprecated `isIncludePrivate` property of the `Groovydoc` task type has been removed.
    Use the `access` property along with the `GroovydocAccess#PRIVATE` constant instead.
    
    ==== JavaApplication API Cleanup
    
    The deprecated `mainClassName` property of the `JavaApplication` interface has been removed.
    Use the `mainClass` property instead.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  9. src/go/types/expr.go

    			// are not meaningful; and excessively long constants may
    			// consume a lot of space and time for a useless conversion.
    			// Cap constant length with a generous upper limit that also
    			// allows for separators between all digits.
    			const limit = 10000
    			if len(e.Value) > limit {
    				check.errorf(e, InvalidConstVal, "excessively long constant: %s... (%d chars)", e.Value[:10], len(e.Value))
    				goto Error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  10. src/runtime/mgcpacer.go

    	// current constant has served us well over the years.
    	maxTriggerRatioNum = 61 // ~0.95
    )
    
    // trigger returns the current point at which a GC should trigger along with
    // the heap goal.
    //
    // The returned value may be compared against heapLive to determine whether
    // the GC should trigger. Thus, the GC trigger condition should be (but may
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
Back to top