Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 195 for rejections (0.12 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/testinggoroutine/testinggoroutine.go

    	// Compare to typeutil.StaticCallee.
    	fun := astutil.Unparen(call.Fun)
    	selExpr, ok := fun.(*ast.SelectorExpr)
    	if !ok {
    		return nil, nil, nil
    	}
    	sel := info.Selections[selExpr]
    	if sel == nil {
    		return nil, nil, nil
    	}
    
    	var x *types.Var
    	if id, ok := astutil.Unparen(selExpr.X).(*ast.Ident); ok {
    		x, _ = info.Uses[id].(*types.Var)
    	}
    	if x == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/slog/slog.go

    }
    
    // isMethodExpr reports whether a call is to a MethodExpr.
    func isMethodExpr(info *types.Info, c *ast.CallExpr) bool {
    	s, ok := c.Fun.(*ast.SelectorExpr)
    	if !ok {
    		return false
    	}
    	sel := info.Selections[s]
    	return sel != nil && sel.Kind() == types.MethodExpr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  3. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportTaskIntegrationTest.groovy

        | org.gradle.jvm.environment     |          | standard-jvm |
        | org.gradle.jvm.version         |          | ${jvmVersion.padRight("standard-jvm".length())} |
       Selection reasons:
          - Rejection: 1.2 by rule because version 1.2 is bad
          - Rejection: 1.1 by rule because version 1.1 is bad
    
    org:bar:[1.0,) -> 1.0
    \\--- compileClasspath
    
    org:foo:1.1
      Variant compile:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 15:15:56 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  4. src/internal/filepathlite/path_windows.go

    	}
    	if IsPathSeparator(path[0]) {
    		// Path rooted in the current drive.
    		return false
    	}
    	if stringslite.IndexByte(path, ':') >= 0 {
    		// Colons are only valid when marking a drive letter ("C:foo").
    		// Rejecting any path with a colon is conservative but safe.
    		return false
    	}
    	hasDots := false // contains . or .. path elements
    	for p := path; p != ""; {
    		var part string
    		part, p, _ = cutPath(p)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:50 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  5. samples/extauthz/cmd/extauthz/main.go

    	<-sigs
    }
    
    func returnIfNotTooLong(body string) string {
    	// Maximum size of a header accepted by Envoy is 60KiB, so when the request body is bigger than 60KB,
    	// we don't return it in a response header to avoid rejecting it by Envoy and returning 431 to the client
    	if len(body) > 60000 {
    		return "<too-long>"
    	}
    	return body
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 15 18:23:48 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/suppliers/DynamicRevisionRemoteResolveWithMetadataSupplierIntegrationTest.groovy

            then: "custom metadata rule prevented parsing of ivy descriptor"
            checkResolve "group:projectA:1.+": ["group:projectA:1.2", "didn't match version 2.0"], "group:projectB:latest.release": ["group:projectB:1.1", "rejection: version 2.2:   - Attribute 'custom string' didn't match. Requested 'v2', was: 'v1'"]
            outputContains 'Providing metadata for group:projectB:2.2'
            outputContains 'Providing metadata for group:projectB:1.1'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 11:46:17 UTC 2024
    - 49K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/admission/plugin/namespace/lifecycle/admission.go

    			return errors.NewInternalError(err)
    		}
    	} else {
    		exists = true
    	}
    
    	if !exists && a.GetOperation() == admission.Create {
    		// give the cache time to observe the namespace before rejecting a create.
    		// this helps when creating a namespace and immediately creating objects within it.
    		time.Sleep(missingNamespaceWait)
    		namespace, err = l.namespaceLister.Get(a.GetNamespace())
    		switch {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 15 09:52:18 UTC 2021
    - 8.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/cel/library/cidr.go

    	return apiservercel.CIDR{
    		Prefix: maskedCIDR,
    	}
    }
    
    // parseCIDR parses a string into an CIDR.
    // We use this function to parse CIDR notation in the CEL library
    // so that we can share the common logic of rejecting strings
    // that IPv4-mapped IPv6 addresses or contain non-zero bits after the mask.
    func parseCIDR(raw string) (netip.Prefix, error) {
    	net, err := netip.ParsePrefix(raw)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 12:03:04 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/egressselector/config_test.go

    					{
    						Name: "invalid",
    						Connection: apiserver.Connection{
    							ProxyProtocol: apiserver.ProtocolDirect,
    						},
    					},
    				},
    			},
    		},
    		{
    			name:        "duplicate egress selections configured",
    			expectError: true,
    			contents: &apiserver.EgressSelectorConfiguration{
    				TypeMeta: metav1.TypeMeta{
    					Kind:       "",
    					APIVersion: "",
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 05 02:24:38 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  10. pilot/pkg/leaderelection/leaderelection.go

    	l.runFns = append(l.runFns, f)
    	return l
    }
    
    // NewLeaderElection creates a leader election instance with the provided ID. This follows standard Kubernetes
    // elections, with one difference: the "default" revision will steal the lock from other revisions.
    func NewLeaderElection(namespace, name, electionID, revision string, client kube.Client) *LeaderElection {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 9.7K bytes
    - Viewed (0)
Back to top