Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 56 for SELF (0.09 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler.go

    	// but it becomes "unserved" because another names update leads to a conflict
    	// and EstablishingController wasn't fast enough to put the CRD into the Established condition.
    	// We accept this as the problem is small and self-healing.
    	if !apiextensionshelpers.IsCRDConditionTrue(crd, apiextensionsv1.NamesAccepted) &&
    		!apiextensionshelpers.IsCRDConditionTrue(crd, apiextensionsv1.Established) {
    		r.delegate.ServeHTTP(w, req)
    		return
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/DefaultModelRegistryTest.groovy

            then:
            IllegalStateException e = thrown()
            e.message == "No model node at 'thing'"
    
            where:
            state << ModelNode.State.values()
        }
    
        def "getting self closed collection defines all links but does not realise them until graph closed"() {
            given:
            def events = []
            def mmType = ModelTypes.modelMap(Bean)
    
            registry
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 56K bytes
    - Viewed (0)
  3. pkg/proxy/winkernel/proxier.go

    		}
    		klog.V(logLevel).InfoS(logMsg, "svcPortName", svcPortName, "endpoints", epInfo)
    	}
    }
    
    // This will cleanup stale load balancers which are pending delete
    // in last iteration. This function will act like a self healing of stale
    // loadbalancer entries.
    func (proxier *Proxier) cleanupStaleLoadbalancers() {
    	i := 0
    	countStaleLB := len(proxier.mapStaleLoadbalancers)
    	if countStaleLB == 0 {
    		return
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/GradlePomModuleDescriptorParserTest.groovy

            hasDefaultDependencyArtifact(depGroupOne)
        }
    
        @Issue("gradle/gradle#1084")
        def "ignores parent if it has the same GAV as resolved pom"() {
            // Maven forbids to _create_ a project with a self referencing parent POM but parses a dependency built that way
            given:
            def pomWithParent = """
    <project>
        <modelVersion>4.0.0</modelVersion>
        <groupId>group-one</groupId>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 75.4K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__authorization.k8s.io__v1_openapi.json

          "io.k8s.api.authorization.v1.SelfSubjectAccessReview": {
            "description": "SelfSubjectAccessReview checks whether or the current user can perform an action.  Not filling in a spec.namespace means \"in all namespaces\".  Self is a special case, because users should always be able to check whether they can perform an action",
            "properties": {
              "apiVersion": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:26 UTC 2023
    - 66.1K bytes
    - Viewed (0)
  6. src/strings/strings_test.go

    	{"x ☺\xc0\xc0 ", "x ☺\xc0\xc0"},
    	{"x ☺ ", "x ☺"},
    }
    
    func tenRunes(ch rune) string {
    	r := make([]rune, 10)
    	for i := range r {
    		r[i] = ch
    	}
    	return string(r)
    }
    
    // User-defined self-inverse mapping function
    func rot13(r rune) rune {
    	step := rune(13)
    	if r >= 'a' && r <= 'z' {
    		return ((r - 'a' + step) % 26) + 'a'
    	}
    	if r >= 'A' && r <= 'Z' {
    		return ((r - 'A' + step) % 26) + 'A'
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 53K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/prove.go

    	if parent.Func.pass.debug > 2 {
    		parent.Func.Warnl(parent.Pos, "parent=%s, update %s %s %s", parent, v, w, r)
    	}
    	// No need to do anything else if we already found unsat.
    	if ft.unsat {
    		return
    	}
    
    	// Self-fact. It's wasteful to register it into the facts
    	// table, so just note whether it's satisfiable
    	if v == w {
    		if r&eq == 0 {
    			ft.unsat = true
    		}
    		return
    	}
    
    	if d == signed || d == unsigned {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  8. docs/changelogs/changelog_3x.md

        when no certificates were pinned. This avoids an SSL failure in insecure
        “trust everyone” configurations, such as when talking to a development
        HTTPS server that has a self-signed certificate.
    
    
    ## Version 3.1.1
    
    _2016-02-07_
    
     *  Fix: Don't crash when finding the trust manager if the Play Services (GMS)
        security provider is installed.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  9. src/bytes/bytes_test.go

    		}
    	}
    }
    
    func tenRunes(r rune) string {
    	runes := make([]rune, 10)
    	for i := range runes {
    		runes[i] = r
    	}
    	return string(runes)
    }
    
    // User-defined self-inverse mapping function
    func rot13(r rune) rune {
    	const step = 13
    	if r >= 'a' && r <= 'z' {
    		return ((r - 'a' + step) % 26) + 'a'
    	}
    	if r >= 'A' && r <= 'Z' {
    		return ((r - 'A' + step) % 26) + 'A'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/debug.go

    	// For the first merge, exclude predecessors that have not been seen yet.
    	// I.e., backedges.
    	for _, pred := range b.Preds {
    		if bl := blockLocs[pred.b.ID]; bl != nil && bl.everProcessed {
    			// crucially, a self-edge has bl != nil, but bl.everProcessed is false the first time.
    			preds = append(preds, pred.b)
    		}
    	}
    
    	locs.everProcessed = true
    
    	if state.loggingLevel > 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
Back to top