Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 72 for Reserve (0.18 sec)

  1. cluster/gce/gci/configure-helper.sh

        iptables -w -t nat -A IP-MASQ -d 100.64.0.0/10 -m comment --comment "ip-masq: RFC 6598 reserved range is not subject to MASQUERADE" -j RETURN
        iptables -w -t nat -A IP-MASQ -d 198.18.0.0/15 -m comment --comment "ip-masq: RFC 6815 reserved range is not subject to MASQUERADE" -j RETURN
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    	FirstDnsSuffix         *IpAdapterDNSSuffix
    }
    
    type IpAdapterWinsServerAddress struct {
    	Length   uint32
    	Reserved uint32
    	Next     *IpAdapterWinsServerAddress
    	Address  SocketAddress
    }
    
    type IpAdapterGatewayAddress struct {
    	Length   uint32
    	Reserved uint32
    	Next     *IpAdapterGatewayAddress
    	Address  SocketAddress
    }
    
    type IpAdapterDNSSuffix struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

    /* Copyright 2020 The TensorFlow Authors. All Rights Reserved.
    
    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at
    
        http://www.apache.org/licenses/LICENSE-2.0
    
    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_pods.go

    	// The kubelet lacks checkpointing, so we need to introspect the set of pods
    	// in the cgroup tree prior to inspecting the set of pods in our pod manager.
    	// this ensures our view of the cgroup tree does not mistakenly observe pods
    	// that are added after the fact...
    	var (
    		cgroupPods map[types.UID]cm.CgroupName
    		err        error
    	)
    	if kl.cgroupsPerQOS {
    		pcm := kl.containerManager.NewPodContainerManager()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

                    def reserved = file("${appType}/build/${forbiddenPath}")
                    failure.assertHasDescription("A problem was found with the configuration of task ':${appType}:badTask' (type 'DefaultTask').")
                    failure.assertThatDescription(containsString(cannotWriteToReservedLocation {
                        property('output')
                            .forbiddenAt(reserved)
                            .includeLink()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    			},
    			errors: map[string]string{
    				// only name and generateName are accessible on metadata
    				"has(self.embedded.metadata.namespace)": "undefined field 'namespace'",
    			},
    		},
    		{name: "embedded object with preserve unknown",
    			obj: map[string]interface{}{
    				"embedded": map[string]interface{}{
    					"apiVersion": "v1",
    					"kind":       "Pod",
    					"metadata": map[string]interface{}{
    						"name":         "foo",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  7. src/reflect/value.go

    // Copyright 2009 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.
    
    package reflect
    
    import (
    	"errors"
    	"internal/abi"
    	"internal/goarch"
    	"internal/itoa"
    	"internal/unsafeheader"
    	"math"
    	"runtime"
    	"unsafe"
    )
    
    // Value is the reflection interface to a Go value.
    //
    // Not all methods apply to all kinds of values. Restrictions,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc_test.go

    						},
    					},
    					UserValidationRules: []apiserver.UserValidationRule{
    						{
    							Expression: "!user.username.startsWith('system:')",
    							Message:    "username cannot used reserved system: prefix",
    						},
    					},
    				},
    				now: func() time.Time { return now },
    			},
    			signingKey: loadRSAPrivKey(t, "testdata/rsa_1.pem", jose.RS256),
    			pubKeys: []*jose.JSONWebKey{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 97.7K bytes
    - Viewed (0)
  9. src/cmd/go/alldocs.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.
    
    // Code generated by 'go test cmd/go -v -run=^TestDocsUpToDate$ -fixdocs'; DO NOT EDIT.
    // Edit the documentation in other files and then execute 'go generate cmd/go' to generate this one.
    
    // Go is a tool for managing Go source code.
    //
    // Usage:
    //
    //	go <command> [arguments]
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/telemetry/package-lock.json

            "has-flag": "^4.0.0"
          },
          "engines": {
            "node": ">=8"
          }
        },
        "node_modules/supports-preserve-symlinks-flag": {
          "version": "1.0.0",
          "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz",
          "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 156K bytes
    - Viewed (0)
Back to top