Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for convlit (0.35 sec)

  1. pilot/pkg/networking/core/listener_test.go

    		sidecar          *config.Config
    		expectedListener []int
    	}{
    		{
    			name:             "service port conflict with proxy static listener",
    			services:         servicesConflictWithStaticListener,
    			sidecar:          nil,
    			expectedListener: []int{15090, 8080},
    		},
    		{
    			name:             "service port conflict with proxy virtual listener",
    			services:         servicesConflictWithVirtualListener,
    			sidecar:          nil,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  2. configure.py

        except subprocess.CalledProcessError as e:
          output = e.output
      else:
        output = subprocess.check_output(cmd, stderr=stderr)
      return output.decode('UTF-8').strip()
    
    
    def cygpath(path):
      """Convert path from posix to windows."""
      return os.path.abspath(path).replace('\\', '/')
    
    
    def get_python_path(environ_cp, python_bin_path):
      """Get the python site package paths."""
      python_paths = []
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modget/get.go

    }
    
    // updateBuildList updates the module loader's global build list to be
    // consistent with r.resolvedVersion, and to include additional modules
    // provided that they do not conflict with the resolved versions.
    //
    // If the additional modules conflict with the resolved versions, they will be
    // downgraded to a non-conflicting version (possibly "none").
    //
    // If the resulting build list is the same as the one resulting from the last
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

         *
         * @param discoveredEdges A collector for visited edges.
         */
        public void visitOutgoingDependencies(Collection<EdgeState> discoveredEdges) {
            // If this configuration's version is in conflict, do not traverse.
            // If none of the incoming edges are transitive, remove previous state and do not traverse.
            // If not traversed before, simply add all selected outgoing edges (either hard or pending edges)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    			pod := obj.(*example.Pod)
    			if pod.Generation != 2 {
    				if sawConflict {
    					t.Fatalf("unexpected second conflict")
    				}
    				sawConflict = true
    				// simulated stale object - return a conflict
    				return nil, apierrors.NewConflict(example.SchemeGroupVersion.WithResource("pods").GroupResource(), "name", errors.New("foo"))
    			}
    			pod.Generation = 3
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  6. src/time/format.go

    				b = append(b, 'Z')
    				break
    			}
    			zone := offset / 60 // convert to minutes
    			absoffset := offset
    			if zone < 0 {
    				b = append(b, '-')
    				zone = -zone
    				absoffset = -absoffset
    			} else {
    				b = append(b, '+')
    			}
    			b = appendInt(b, zone/60, 2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/sidecar_simulation_test.go

    			clusters := xdstest.FilterClusters(sim.Clusters, func(c *cluster.Cluster) bool {
    				return strings.HasPrefix(c.Name, "inbound")
    			})
    			if len(s.PushContext().ProxyStatus) != 0 {
    				// TODO make this fatal, once inbound conflict is silenced
    				t.Logf("got unexpected error: %+v", s.PushContext().ProxyStatus)
    			}
    			cmap := xdstest.ExtractClusters(clusters)
    			got := xdstest.MapKeys(cmap)
    
    			// Check we have all expected clusters
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  8. cmd/xl-storage.go

    	info.Rotational = s.rotational
    	info.MountPath = s.drivePath
    	info.Endpoint = s.endpoint.String()
    	info.Scanning = atomic.LoadInt32(&s.scanning) == 1
    	return info, err
    }
    
    // getVolDir - will convert incoming volume names to
    // corresponding valid volume names on the backend in a platform
    // compatible way for all operating systems. If volume is not found
    // an error is generated.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  9. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    					Image: "busybox",
    				},
    			},
    		},
    	}
    
    	// Set fake sandbox and fake containers to fakeRuntime.
    	fakeSandbox, fakeContainers := makeAndSetFakePod(t, m, fakeRuntime, pod)
    
    	// Convert the fakeContainers to kubecontainer.Container
    	containers := make([]*kubecontainer.Container, len(fakeContainers))
    	for i := range containers {
    		fakeContainer := fakeContainers[i]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  10. cmd/api-errors.go

    	},
    	ErrCastFailed: {
    		Code:           "CastFailed",
    		Description:    "Attempt to convert from one data type to another using CAST failed in the SQL expression.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrInvalidCast: {
    		Code:           "InvalidCast",
    		Description:    "Attempt to convert from one data type to another using CAST failed in the SQL expression.",
    		HTTPStatusCode: http.StatusBadRequest,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
Back to top