Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 931 for Everything (0.14 sec)

  1. manifests/charts/base/files/profile-ambient.yaml

          ISTIO_META_ENABLE_HBONE: "true"
    global:
      variant: distroless
    pilot:
      env:
        PILOT_ENABLE_AMBIENT: "true"
    cni:
      ambient:
        enabled: true
    
    # Ztunnel doesn't use a namespace, so everything here is mostly for ztunnel
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 30 20:24:06 UTC 2024
    - 610 bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/factories/ExcludeJsonLogToCode.groovy

    def operation = factory.$operation([
       ${operands.indexed().collect { i, e -> "operand$i" }.join(",\n   ")}
    ] as Set)
    """
        }
    
        private String toExclude(it) {
            if (it == 'excludes everything') {
                return 'everything()'
            }
            assert it instanceof Map
            assert it.keySet().size() == 1
            String key = it.keySet()[0]
            Object value = it[key]
            toExclude(key, value)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  3. pkg/scheduler/internal/cache/debugger/comparer.go

    	logger.V(3).Info("Cache comparer started")
    	defer logger.V(3).Info("Cache comparer finished")
    
    	nodes, err := c.NodeLister.List(labels.Everything())
    	if err != nil {
    		return err
    	}
    
    	pods, err := c.PodLister.List(labels.Everything())
    	if err != nil {
    		return err
    	}
    
    	dump := c.Cache.Dump()
    
    	pendingPods, _ := c.PodQueue.PendingPods()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 29 05:26:32 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  4. src/cmd/go/internal/toolchain/umask_unix.go

    	if m&0o22 == 0o22 { // group and world are unwritable by default
    		return 0o700
    	}
    	if m&0o2 == 0o2 { // group is writable by default, but not world
    		return 0o770
    	}
    	return 0o777 // everything is writable by default
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 20 15:44:08 UTC 2023
    - 896 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/dependencyManagement/declaringRepositories-filtering/kotlin/build.gradle.kts

                // this repository *only* contains artifacts with group "my.company"
                includeGroup("my.company")
            }
        }
        mavenCentral {
            content {
                // this repository contains everything BUT artifacts with group starting with "my.company"
                excludeGroupByRegex("my\\.company.*")
            }
        }
    }
    // end::repository-filter[]
    
    // tag::exclusive-repository-filter[]
    repositories {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  6. maven-compat/src/main/java/org/apache/maven/repository/DefaultMirrorSelector.java

         * <ul>
         * <li>{@code *} = everything,</li>
         * <li>{@code external:*} = everything not on the localhost and not file based,</li>
         * <li>{@code external:http:*} = any repository not on the localhost using HTTP,</li>
         * <li>{@code repo,repo1} = {@code repo} or {@code repo1},</li>
         * <li>{@code *,!repo1} = everything except {@code repo1}.</li>
         * </ul>
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 15 14:24:56 UTC 2023
    - 8K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/autocgo.txt

    [!cgo] skip
    [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
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 17 02:01:30 UTC 2022
    - 625 bytes
    - Viewed (0)
  8. okhttp-urlconnection/src/main/kotlin/okhttp3/JavaNetCookieJar.kt

    @file:Suppress("INVISIBLE_MEMBER", "INVISIBLE_REFERENCE")
    
    package okhttp3
    
    import java.net.CookieHandler
    
    /**
     * A cookie jar that delegates to a [java.net.CookieHandler].
     *
     * This implementation delegates everything to [okhttp3.java.net.cookiejar.JavaNetCookieJar], which
     * conforms to the package-naming limitations of JPMS.
     *
     * Callers should prefer to use [okhttp3.java.net.cookiejar.JavaNetCookieJar] directly.
     */
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  9. test/fixedbugs/issue23521.go

    package p
    
    //go:noinline
    func nonleaf() {}
    
    const truth = true
    
    func f() int { // ERROR "can inline f"
    	if truth {
    		return 0
    	}
    	// If everything below is removed, as it should,
    	// function f should be inlineable.
    	nonleaf()
    	for {
    		panic("")
    	}
    }
    
    func g() int { // ERROR "can inline g"
    	return f() // ERROR "inlining call to f"
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 03 15:19:41 UTC 2018
    - 773 bytes
    - Viewed (0)
  10. pkg/controlplane/controller/crdregistration/crdregistration_controller.go

    	if !cache.WaitForNamedCacheSync("crd-autoregister", stopCh, c.crdSynced) {
    		return
    	}
    
    	// process each item in the list once
    	if crds, err := c.crdLister.List(labels.Everything()); err != nil {
    		utilruntime.HandleError(err)
    	} else {
    		for _, crd := range crds {
    			for _, version := range crd.Spec.Versions {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 8.3K bytes
    - Viewed (0)
Back to top