Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for rejections (0.31 sec)

  1. 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)
  2. tensorflow/compiler/jit/mark_for_compilation_pass.cc

      if (status.ok()) {
        if (!compile) {
          VLOG(2) << "Rejecting " << node->name() << ": kXlaCompileAttr("
                  << kXlaCompileAttr << ") is false.";
        }
        return !compile;
      }
    
      status = flib_def_->GetAttr(*node, kXlaCompileAttr, &compile);
      if (status.ok()) {
        if (!compile) {
          VLOG(2) << "Rejecting " << node->name() << ": kXlaCompileAttr("
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/api_test.go

    	return nil, fmt.Errorf("package %q not found", path)
    }
    
    func TestSelection(t *testing.T) {
    	selections := make(map[*syntax.SelectorExpr]*Selection)
    
    	imports := make(testImporter)
    	conf := Config{Importer: imports}
    	makePkg := func(path, src string) {
    		pkg := mustTypecheck(src, &conf, &Info{Selections: selections})
    		imports[path] = pkg
    	}
    
    	const libSrc = `
    package lib
    type T float64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  4. src/go/types/api_test.go

    					sel := call.Fun.(*ast.SelectorExpr)
    					use := info.Uses[sel.Sel].(*Func)
    					selection := info.Selections[sel]
    					if selection.Kind() != MethodVal {
    						t.Errorf("Selection kind = %v, want %v", selection.Kind(), MethodVal)
    					}
    					if selection.Obj() != use {
    						t.Errorf("info.Selections contains %v, want %v", selection.Obj(), use)
    					}
    					switch sel.Sel.Name {
    					case "m":
    						dmm = use
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/listener_test.go

    	//
    	// Even if a user explicitly created a Sidecar config with an ingress listener for a privileged port,
    	// it is still not worth it creating such a listener if we already known that a proxy will end up
    	// rejecting it.
    	testPrivilegedPorts(t, func(t *testing.T, proxy *model.Proxy, port uint32) []*listener.Listener {
    		// simulate user-defined Sidecar config with an ingress listener for a given port
    		sidecarConfig := config.Config{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/listener.go

    	plaintextHTTPALPNs = func() []string {
    		if features.HTTP10 {
    			// If HTTP 1.0 is enabled, we will match it
    			return []string{"http/1.0", "http/1.1", "h2c"}
    		}
    		// Otherwise, matching would just lead to immediate rejection. By not matching, we can let it pass
    		// through as raw TCP at least.
    		// NOTE: mtlsHTTPALPNs can always include 1.0, for simplicity, as it will only be sent if a client
    		return []string{"http/1.1", "h2c"}
    	}()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  7. pkg/proxy/nftables/proxier.go

    			// hasExternalEndpoints will also be false, and we will not
    			// generate any chains in the "nat" table for the service; only
    			// rules in the "filter" table rejecting incoming packets for
    			// the service's IPs.
    			internalTrafficFilterVerdict = fmt.Sprintf("goto %s", rejectChain)
    			externalTrafficFilterVerdict = fmt.Sprintf("goto %s", rejectChain)
    		} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

    def EliminateLogicalOrFalse : Pat<
      (TFL_LogicalOrOp:$result $lhs, (Arith_ConstantOp:$rhs $constant)),
      (replaceWithValue $lhs),
      [(AllElementsAreBool<"false"> $constant), (HaveSameType $lhs, $result)]>;
    
    // Remove reductions that do nothing: input and output have the same size.
    foreach ReduceOp = [TFL_ReduceAnyOp, TFL_ReduceAllOp,
                        TFL_ReduceMinOp, TFL_ReduceMaxOp,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/runtime/framework.go

    	return status
    }
    
    // RunPreBindPlugins runs the set of configured prebind plugins. It returns a
    // failure (bool) if any of the plugins returns an error. It also returns an
    // error containing the rejection message or the error occurred in the plugin.
    func (f *frameworkImpl) RunPreBindPlugins(ctx context.Context, state *framework.CycleState, pod *v1.Pod, nodeName string) (status *framework.Status) {
    	startTime := time.Now()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  10. pkg/scheduler/internal/queue/scheduling_queue.go

    			// When unscheduled Pods are updated, we check with QueueingHint
    			// whether the update may make the pods schedulable.
    			// Plugins have to implement a QueueingHint for Pod/Update event
    			// if the rejection from them could be resolved by updating unscheduled Pods itself.
    			hint := p.isPodWorthRequeuing(logger, pInfo, UnscheduledPodUpdate, oldPod, newPod)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
Back to top