Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 385 for anyone (0.14 sec)

  1. pkg/test/loadbalancersim/loadbalancer/weight.go

    		}
    	}
    	return true
    }
    
    func (lb *weightedConnections) get(index int) *WeightedConnection {
    	return lb.conns[index]
    }
    
    func (lb *weightedConnections) doRequest(c *WeightedConnection, onDone func()) {
    	lb.helper.Request(c.Request, onDone)
    }
    
    func (lb *weightedConnections) Name() string {
    	return lb.helper.Name()
    }
    
    func (lb *weightedConnections) TotalRequests() uint64 {
    	return lb.helper.TotalRequests()
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 03 18:19:25 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/topologymanager/scope.go

    // but topologymanager do not track mapping anymore
    func (s *scope) AddContainer(pod *v1.Pod, container *v1.Container, containerID string) {
    	s.mutex.Lock()
    	defer s.mutex.Unlock()
    
    	s.podMap.Add(string(pod.UID), container.Name, containerID)
    }
    
    // It would be better to implement this function in topologymanager instead of scope
    // but topologymanager do not track mapping anymore
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 14 14:44:24 UTC 2023
    - 5K bytes
    - Viewed (0)
  3. src/net/netip/uint128.go

    	return uint128{^u.hi, ^u.lo}
    }
    
    // subOne returns u - 1.
    func (u uint128) subOne() uint128 {
    	lo, borrow := bits.Sub64(u.lo, 1, 0)
    	return uint128{u.hi - borrow, lo}
    }
    
    // addOne returns u + 1.
    func (u uint128) addOne() uint128 {
    	lo, carry := bits.Add64(u.lo, 1, 0)
    	return uint128{u.hi + carry, lo}
    }
    
    // halves returns the two uint64 halves of the uint128.
    //
    // Logically, think of it as returning two uint64s.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 07 21:28:44 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/artifact/handler/manager/DefaultArtifactHandlerManager.java

            throw new UnsupportedOperationException("Adding handlers programmatically is not supported anymore");
        }
    
        @Deprecated
        public Set<String> getHandlerTypes() {
            throw new UnsupportedOperationException("Querying handlers programmatically is not supported anymore");
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 17:18:13 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  5. releasenotes/notes/drop-iop.yaml

        of what was installed.
        However, it was a common source of confusion (as users would change it and nothing would happen), and did not reliably represent the current state.
        As there is no `IstioOperator` needed for these usages anymore, `istioctl install` and `helm install` no longer install the `IstioOperator` CRD.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 22:41:06 UTC 2023
    - 769 bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/autocgo.txt

    [cross] skip
    
    # Assume we're on a system that can enable cgo normally.
    env CGO_ENABLED=
    go env CGO_ENABLED
    stdout 1
    
    # Clearing CC and removing everything but Go from the PATH should usually
    # disable cgo: no C compiler anymore (unless the baked-in defaultCC is an
    # absolute path and exists.
    env CC=
    env PATH=$GOROOT/bin
    go env CGO_ENABLED
    [!abscc] stdout 0
    [abscc] stdout 1
    
    # Setting CC should re-enable cgo.
    env CC=cc
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 17 02:01:30 UTC 2022
    - 625 bytes
    - Viewed (0)
  7. pkg/test/loadbalancersim/mesh/node.go

    func (n *Node) Latency() *timeseries.Instance {
    	return n.helper.Latency()
    }
    
    func (n *Node) Request(onDone func()) {
    	n.helper.Request(func(wrappedOnDone func()) {
    		deadline := time.Now().Add(n.calcRequestDuration())
    
    		// Schedule the done function to be called after the deadline.
    		n.q.Schedule(wrappedOnDone, deadline)
    	}, onDone)
    }
    
    func (n *Node) Locality() locality.Instance {
    	return n.locality
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 03 18:19:25 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  8. .teamcity/src/main/kotlin/common/JvmCategory.kt

    enum class JvmCategory(
        override val vendor: JvmVendor,
        override val version: JvmVersion
    ) : Jvm {
        MIN_VERSION(JvmVendor.oracle, JvmVersion.java8),
        // Oracle doesn't provide zip JDK distribution for Windows anymore, we avoid using it
        MIN_VERSION_WINDOWS_MAC(JvmVendor.openjdk, JvmVersion.java8),
        MAX_LTS_VERSION(JvmVendor.openjdk, JvmVersion.java21),
        MAX_VERSION(JvmVendor.openjdk, JvmVersion.java22),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  9. src/math/big/prime.go

    			x = x.add(x, natTwo)
    		}
    		y = y.expNN(x, q, n, false)
    		if y.cmp(natOne) == 0 || y.cmp(nm1) == 0 {
    			continue
    		}
    		for j := uint(1); j < k; j++ {
    			y = y.sqr(y)
    			quotient, y = quotient.div(y, y, n)
    			if y.cmp(nm1) == 0 {
    				continue NextRandom
    			}
    			if y.cmp(natOne) == 0 {
    				return false
    			}
    		}
    		return false
    	}
    
    	return true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 02 14:43:52 UTC 2022
    - 10.4K bytes
    - Viewed (0)
  10. cluster/addons/addon-manager/CHANGELOG.md

     - Fix `start_addon` overwriting resources with `addonmanager.kubernetes.io/mode=EnsureExists`.
    
    ### Version 9.1.1 (Wed May 19 2020 Antoni Zawodny <******@****.***>)
     - Fix kube-addons.sh and kubectl permissions
    
    ### Version 9.1.0 (Wed May 13 2020 Antoni Zawodny <******@****.***>)
     - Enable overriding the default list of whitelisted resources
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 15 01:39:45 UTC 2023
    - 4.4K bytes
    - Viewed (0)
Back to top