Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 147 for onetmp (0.15 sec)

  1. pkg/api/service/warnings_test.go

    				`spec.loadBalancerSourceRanges[1]: IP prefix was accepted, but will be invalid in a future Kubernetes release: netip.ParsePrefix("10.012.2.0/24"): ParseAddr("10.012.2.0"): IPv4 field has octet with leading zero`,
    			},
    		},
    	}
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 26 22:57:57 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  2. operator/pkg/validate/common.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package validate
    
    import (
    	"fmt"
    	"net/netip"
    	"reflect"
    	"regexp"
    	"strconv"
    	"strings"
    
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
    	"sigs.k8s.io/yaml"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 10 15:35:03 UTC 2023
    - 11K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/memory/discovery.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package memory
    
    import (
    	"fmt"
    	"net/netip"
    	"sync"
    
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/serviceregistry/provider"
    	"istio.io/istio/pkg/cluster"
    	"istio.io/istio/pkg/config/host"
    	"istio.io/istio/pkg/config/labels"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 23:10:01 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  4. src/net/cgo_unix.go

    // cgo_unix_cgo.go or cgo_unix_syscall.go
    
    //go:build !netgo && ((cgo && unix) || darwin)
    
    package net
    
    import (
    	"context"
    	"errors"
    	"internal/bytealg"
    	"net/netip"
    	"syscall"
    	"unsafe"
    
    	"golang.org/x/net/dns/dnsmessage"
    )
    
    // cgoAvailable set to true to indicate that the cgo resolver
    // is available on this system.
    const cgoAvailable = true
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tfr/BUILD

            "//tensorflow/python/eager:backprop",
            "//tensorflow/python/framework:test_lib",
            "//tensorflow/python/platform:client_testlib",
        ],
    )
    
    gen_op_libraries(
        name = "one_op",
        src = "define_op_template.py",
        deps = [
            "//tensorflow/python/platform:flags",
            "@absl_py//absl:app",
        ],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 14K bytes
    - Viewed (0)
  6. pilot/cmd/pilot-agent/status/server.go

    		upstreamLocalAddress = UpstreamLocalAddressIPv6
    	} else {
    		// if not ipv6-only, it can be ipv4-only or dual-stack
    		// let InstanceIP decide the localhost
    		netIP := net.ParseIP(config.PodIP)
    		if netIP.To4() == nil && netIP.To16() != nil && !netIP.IsLinkLocalUnicast() {
    			localhost = localHostIPv6
    			upstreamLocalAddress = UpstreamLocalAddressIPv6
    		}
    	}
    	probes := make([]ready.Prober, 0)
    	if !config.NoEnvoy {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 31.1K bytes
    - Viewed (1)
  7. pilot/pkg/serviceregistry/serviceentry/conversion.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package serviceentry
    
    import (
    	"net/netip"
    	"strings"
    	"time"
    
    	"istio.io/api/label"
    	networking "istio.io/api/networking/v1alpha3"
    	"istio.io/istio/pilot/pkg/features"
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/serviceregistry/provider"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  8. maven-toolchain-builder/src/test/java/org/apache/maven/toolchain/building/DefaultToolchainsBuilderTest.java

        @Spy
        private DefaultToolchainsXmlFactory toolchainsXmlFactory;
    
        @InjectMocks
        private DefaultToolchainsBuilder toolchainBuilder;
    
        @BeforeEach
        void onSetup() {
            // MockitoAnnotations.openMocks(this);
    
            Map<String, String> envVarMap = new HashMap<>();
            envVarMap.put("testKey", "testValue");
            envVarMap.put("testSpecialCharactersKey", "<test&Value>");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  9. src/net/netip/slow_test.go

    // Copyright 2020 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 netip_test
    
    import (
    	"fmt"
    	. "net/netip"
    	"strconv"
    	"strings"
    )
    
    // zeros is a slice of eight stringified zeros. It's used in
    // parseIPSlow to construct slices of specific amounts of zero fields,
    // from 1 to 8.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 19:54:31 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  10. src/index/suffixarray/sais.go

    	// we can reuse for temporary space (saTmp).
    	// When recurse_32 is called from sais_8_32, oldTmp is length 512
    	// (from text_32), and saTmp will typically be much larger, so we'll use saTmp.
    	// When deeper recursions come back to recurse_32, now oldTmp is
    	// the saTmp from the top-most recursion, it is typically larger than
    	// the current saTmp (because the current sa gets smaller and smaller
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 32.4K bytes
    - Viewed (0)
Back to top