Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 106 for portnet (0.17 sec)

  1. pkg/proxy/ipvs/proxier.go

    			continue
    		}
    		portNum, err := strconv.Atoi(port)
    		if err != nil {
    			proxier.logger.Error(err, "Failed to parse endpoint port", "port", port)
    			continue
    		}
    
    		newDest := &utilipvs.RealServer{
    			Address: netutils.ParseIPSloppy(ip),
    			Port:    uint16(portNum),
    			Weight:  1,
    		}
    
    		if curEndpoints.Has(ep) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/rest.go

    			scope.err(err, w, req)
    			return
    		}
    		if admit != nil && admit.Handles(admission.Connect) {
    			userInfo, _ := request.UserFrom(ctx)
    			// TODO: remove the mutating admission here as soon as we have ported all plugin that handle CONNECT
    			if mutatingAdmission, ok := admit.(admission.MutationInterface); ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 17K bytes
    - Viewed (0)
  3. pilot/pkg/model/network.go

    	// - the internal map of label gateways - these get deleted if the service is deleted, updated if the ip changes etc.
    	// - the computed map from meshNetworks (triggered by reloadNetworkLookup, the ported logic from getGatewayAddresses)
    	gatewaySet.InsertAll(mgr.env.NetworkGateways()...)
    	resolvedGatewaySet := mgr.resolveHostnameGateways(gatewaySet)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 24 03:31:28 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  4. src/go/build/read.go

    	}
    
    	return nil
    }
    
    // isValidImport checks if the import is a valid import using the more strict
    // checks allowed by the implementation restriction in https://go.dev/ref/spec#Import_declarations.
    // It was ported from the function of the same name that was removed from the
    // parser in CL 424855, when the parser stopped doing these checks.
    func isValidImport(s string) bool {
    	const illegalChars = `!"#$%&'()*,:;<=>?[\]^{|}` + "`\uFFFD"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  5. tensorflow/c/experimental/filesystem/plugins/gcs/gcs_filesystem_test.cc

      EXPECT_TF_OK(status_);
    
      auto result = ReadAll(dst);
      EXPECT_TF_OK(status_);
      EXPECT_EQ("test_old", result);
    }
    
    // These tests below are ported from
    // `//tensorflow/core/platform/cloud:gcs_file_system_test`
    TEST_F(GCSFilesystemTest, NewRandomAccessFile_NoBlockCache) {
      tf_gcs_filesystem::InitTest(filesystem_, false, 0, 0, 0, 0, 0, status_);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 31 12:04:23 UTC 2020
    - 24.9K bytes
    - Viewed (0)
  6. tensorflow/cc/framework/gradients_test.cc

    using ops::Placeholder;
    using ops::Square;
    using ops::Stack;
    using ops::StopGradient;
    using ops::Unstack;
    using ops::Variable;
    
    // TODO(andydavis) Add more unit tests once more gradient functions are ported.
    class GradientsTest : public ::testing::Test {
     protected:
      GradientsTest()
          : scope_expected_(Scope::NewRootScope()),
            scope_test_(Scope::NewRootScope()) {}
    
      void CompareTestAndExpectedGraphs() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 15 15:13:38 UTC 2023
    - 25K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.21.md

    - PodDisruptionBudget API objects can now contain conditions in status. ([#98127](https://github.com/kubernetes/kubernetes/pull/98127), [@mortent](https://github.com/mortent)) [SIG API Machinery, Apps, Auth, CLI, Cloud Provider, Cluster Lifecycle and Instrumentation]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 14 07:03:14 UTC 2022
    - 367.3K bytes
    - Viewed (0)
  8. pkg/printers/internalversion/printers.go

    	list := []string{}
    	max := 3
    	more := false
    	count := 0
    	for _, port := range ports {
    		if len(list) < max {
    			portNum := "*"
    			if port.Port != nil {
    				portNum = strconv.Itoa(int(*port.Port))
    			} else if port.Name != nil {
    				portNum = *port.Name
    			}
    			list = append(list, portNum)
    		} else if len(list) == max {
    			more = true
    		}
    		count++
    	}
    	return listWithMoreString(list, more, count, max)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.12.md

    - Avoid creating new controller revisions for statefulsets when cache is stale ([#67039](https://github.com/kubernetes/kubernetes/pull/67039), [@mortent](https://github.com/mortent))
    - Fixes issue when updating a DaemonSet causes a hash collision. ([#66476](https://github.com/kubernetes/kubernetes/pull/66476), [@mortent](https://github.com/mortent))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 06 06:04:15 UTC 2020
    - 293.8K bytes
    - Viewed (0)
  10. src/runtime/metrics_test.go

    		delayMicros := delay.Microseconds()
    
    		// The goroutine that acquires the lock will only proceed when it
    		// detects that its partner is contended for the lock. That will lead to
    		// live-lock if anything (such as a STW) prevents the partner goroutine
    		// from running. Allowing the contention workers to pause and restart
    		// (to allow a STW to proceed) makes it harder to confirm that we're
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 45K bytes
    - Viewed (0)
Back to top