Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 8,903 for usedBy (0.13 sec)

  1. istioctl/pkg/kubeinject/testdata/mesh-config.yaml

      binaryPath: "/usr/local/bin/envoy"
      # The pseudo service name used for Envoy.
      serviceCluster: istio-proxy
      # These settings that determine how long an old Envoy
      # process should be kept alive after an occasional reload.
      drainDuration: 2s
      #
      # The mode used to redirect inbound connections to Envoy. This setting
      # has no effect on outbound traffic: iptables REDIRECT is always used for
      # outbound connections.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/extensions/GradleMetadataResolveInterceptor.groovy

        def isInvalidCombination(Map<String, String> values) {
            false
        }
    
        static boolean isGradleMetadataPublished() {
            System.getProperty(GRADLE_METADATA) == "true"
        }
    
        static boolean useIvy() {
            System.getProperty(REPOSITORY_TYPE) == "ivy"
        }
    
        static boolean useMaven() {
            System.getProperty(REPOSITORY_TYPE) == "maven"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/capabilities/PublishedCapabilityRequestsIntegrationTest.groovy

                        }
                    }
                }
            }
        }
    
        static Closure<String> defaultStatus() {
            { -> GradleMetadataResolveRunner.useIvy() ? 'integration' : 'release' }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/native/cpp_library_plugin.adoc

    Used for compiling against the library.
    This configuration is meant to be used by consumers, to retrieve all the elements necessary to compile against the library.
    
    `__variant__LinkElements` (e.g. `debugLinkElements` and `releaseLinkElements`) extends `main__Variant__Implementation`::
    Used for linking against the library.
    This configuration is meant to be used by consumers, to retrieve all the elements necessary to link against the library.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 18.2K bytes
    - Viewed (0)
  5. test/fixedbugs/bug444.go

    // license that can be found in the LICENSE file.
    
    // The no-op conversion here used to confuse the compiler
    // into doing a load-effective-address of nil.
    // See issue 3670.
    
    package main
    
    import "reflect"
    
    type T interface {}
    
    var x bool
    
    func main() {
            reflect.TypeOf(nil)
            reflect.TypeOf(T(nil)) // used to miscompile
            shouldPanic()
    }
    
    func f() byte {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 645 bytes
    - Viewed (0)
  6. pkg/registry/core/service/portallocator/allocator_test.go

    	}
    	if f := r.Free(); f != 1 {
    		t.Errorf("unexpected free %d", f)
    	}
    	if f := r.Used(); f != 200 {
    		t.Errorf("unexpected used %d", f)
    	}
    	if err := r.Allocate(released); err != nil {
    		t.Fatal(err)
    	}
    	if f := r.Free(); f != 0 {
    		t.Errorf("unexpected free %d", f)
    	}
    	if f := r.Used(); f != 201 {
    		t.Errorf("unexpected used %d", f)
    	}
    }
    
    func TestAllocateReserved(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 07:15:02 UTC 2024
    - 14K bytes
    - Viewed (0)
  7. cmd/metrics-v3-system-memory.go

    const (
    	memTotal     = "total"
    	memUsed      = "used"
    	memFree      = "free"
    	memBuffers   = "buffers"
    	memCache     = "cache"
    	memUsedPerc  = "used_perc"
    	memShared    = "shared"
    	memAvailable = "available"
    )
    
    var (
    	memTotalMD     = NewGaugeMD(memTotal, "Total memory on the node")
    	memUsedMD      = NewGaugeMD(memUsed, "Used memory on the node")
    	memUsedPercMD  = NewGaugeMD(memUsedPerc, "Used memory percentage on the node")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Apr 17 05:10:25 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  8. src/internal/chacha8rand/chacha8.go

    		return new(errUnmarshalChaCha8)
    	}
    	used := byteorder.BeUint64(data[1*8:])
    	if used > (ctrMax/ctrInc)*chunk-reseed {
    		return new(errUnmarshalChaCha8)
    	}
    	for i := range s.seed {
    		s.seed[i] = byteorder.LeUint64(data[(2+i)*8:])
    	}
    	s.c = ctrInc * (uint32(used) / chunk)
    	block(&s.seed, &s.buf, s.c)
    	s.i = uint32(used) % chunk
    	s.n = chunk
    	if s.c == ctrMax-ctrInc {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:47:29 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  9. tools/istio-iptables/pkg/constants/constants.go

    	FORWARD:     {},
    	PREROUTING:  {},
    	POSTROUTING: {},
    }
    
    // Constants used for generating iptables commands
    const (
    	TCP = "tcp"
    	UDP = "udp"
    
    	TPROXY   = "TPROXY"
    	RETURN   = "RETURN"
    	ACCEPT   = "ACCEPT"
    	REDIRECT = "REDIRECT"
    	MARK     = "MARK"
    	CT       = "CT"
    	DROP     = "DROP"
    )
    
    const (
    	// IPVersionSpecific is used as an input to rules that will be replaced with an ip version (v4/v6)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 01:42:30 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  10. pkg/controller/nodeipam/ipam/cidrset/cidr_set.go

    	maxCIDRs int
    	// allocatedCIDRs counts the number of CIDRs allocated
    	allocatedCIDRs int
    	// nextCandidate points to the next CIDR that should be free
    	nextCandidate int
    	// used is a bitmap used to track the CIDRs allocated
    	used big.Int
    	// label is used to identify the metrics
    	label string
    }
    
    const (
    	// The subnet mask size cannot be greater than 16 more than the cluster mask size
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 11 08:53:03 UTC 2023
    - 9.4K bytes
    - Viewed (0)
Back to top