Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 195 for rejections (0.21 sec)

  1. src/go/types/eval_test.go

    		expr, err := parser.ParseExprFrom(fset, "eval", str, 0)
    		if err != nil {
    			return nil, err
    		}
    
    		info := &Info{
    			Uses:       make(map[*ast.Ident]Object),
    			Selections: make(map[*ast.SelectorExpr]*Selection),
    		}
    		if err := CheckExpr(fset, pkg, pos, expr, info); err != nil {
    			return nil, fmt.Errorf("CheckExpr(%q) failed: %s", str, err)
    		}
    		switch expr := expr.(type) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 19:56:15 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/html.go

        }
    
        var ssaElemClicked = function(elem, event, selections, selected) {
            event.stopPropagation();
    
            // find all values with the same name
            var c = elem.classList.item(0);
            var x = document.getElementsByClassName(c);
    
            // if selected, remove selections from all of them
            // otherwise, attempt to add
    
            var remove = "";
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 15:11:40 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  3. src/crypto/ecdh/ecdh_test.go

    		r := &countingReader{r: rand.Reader}
    		k, err := curve.GenerateKey(r)
    		if err != nil {
    			t.Fatal(err)
    		}
    
    		// GenerateKey does rejection sampling. If the masking works correctly,
    		// the probability of a rejection is 1-ord(G)/2^ceil(log2(ord(G))),
    		// which for all curves is small enough (at most 2^-32, for P-256) that
    		// a bit flip is more likely to make this test fail than bad luck.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 18:23:49 UTC 2024
    - 18K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/SelectorState.java

                        selectionReason.addCause(ComponentSelectionReasons.REJECTION.withDescription(new RejectedByRuleReason(version, reason)));
                    } else if (rejectedVersion instanceof RejectedByAttributesVersion) {
                        selectionReason.addCause(ComponentSelectionReasons.REJECTION.withDescription(new RejectedByAttributesReason((RejectedByAttributesVersion) rejectedVersion)));
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/model.go

    	VirtualService []config.Config
    	// AllowedReferences stores all allowed references, from Reference -> to Reference(s)
    	AllowedReferences AllowedReferences
    	// ReferencedNamespaceKeys stores the label key of all namespace selections. This allows us to quickly
    	// determine if a namespace update could have impacted any Gateways. See namespaceEvent.
    	ReferencedNamespaceKeys sets.String
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:09 UTC 2024
    - 4K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/RuleBindingsTest.groovy

        }
    
        void addNode(TestNode node, ModelProjection... projections) {
            addUntypedNode(node)
            addProjections(node, projections)
        }
    
        private void addUntypedNode(TestNode node) {
            bindings.nodeCreated(node)
        }
    
        private void addProjections(TestNode node, ModelProjection... projections) {
            projections.each { node.addProjection it }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 26.8K bytes
    - Viewed (0)
  7. src/go/types/stdlib_test.go

    	}
    
    	testTestDir(t, filepath.Join(testenv.GOROOT(t), "test"),
    		"cmplxdivide.go", // also needs file cmplxdivide1.go - ignore
    		"directive.go",   // tests compiler rejection of bad directive placement - ignore
    		"directive2.go",  // tests compiler rejection of bad directive placement - ignore
    		"embedfunc.go",   // tests //go:embed
    		"embedvers.go",   // tests //go:embed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 19 04:39:56 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.22.md

    change the Kubelet now correctly takes into account the resources of running and terminating pods when deciding to accept new pods, since terminating pods are still holding on to those resources. This stricter handling may surface to end users as pod rejections when creating pods that are scheduled to mostly full nodes that have other terminating pods holding the resources the new pods need. The most likely error would be a pod set to `Failed` phase with reason set to `OutOfCpu` or `OutOfMemory`, but any...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 13 12:43:45 UTC 2022
    - 454.1K bytes
    - Viewed (0)
  9. pkg/kubelet/sysctl/allowlist.go

    )
    
    const (
    	ForbiddenReason = "SysctlForbidden"
    )
    
    // patternAllowlist takes a list of sysctls or sysctl patterns (ending in *) and
    // checks validity via a sysctl and prefix map, rejecting those which are not known
    // to be namespaced.
    type patternAllowlist struct {
    	sysctls  map[string]utilsysctl.Namespace
    	prefixes map[string]utilsysctl.Namespace
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 22:58:54 UTC 2023
    - 4K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/ComponentSelectionRulesProcessorTest.groovy

            componentSelection = new DefaultComponentSelection(componentIdentifier, metadataProvider)
        }
    
        def "all non-rejecting rules are evaluated"() {
            metadataProvider.isUsable() >> true
            metadataProvider.getComponentMetadata() >> Mock(ComponentMetadata)
            metadataProvider.getIvyModuleDescriptor() >> Mock(IvyModuleDescriptor)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 15.7K bytes
    - Viewed (0)
Back to top