Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 64 for pass2 (0.18 sec)

  1. pkg/kubelet/kubelet_test.go

    			},
    			Requests: v1.ResourceList{
    				adjustedResource: resourceQuantity2,
    			},
    		}}},
    	}
    	// pod requiring emptyResource (extended resources with 0 allocatable) will
    	// not pass PredicateAdmit.
    	emptyPodSpec := v1.PodSpec{NodeName: string(kl.nodeName),
    		Containers: []v1.Container{{Resources: v1.ResourceRequirements{
    			Limits: v1.ResourceList{
    				emptyResource: resourceQuantity2,
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  2. src/net/http/server.go

    		if u != nil {
    			return RedirectHandler(u.String(), StatusMovedPermanently), u.Path, nil, nil
    		}
    		// Redo the match, this time with r.Host instead of r.URL.Host.
    		// Pass a nil URL to skip the trailing-slash redirect logic.
    		n, matches, _ = mux.matchOrRedirect(r.Host, r.Method, path, nil)
    	} else {
    		// All other requests have any port stripped and path cleaned
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  3. src/cmd/go/internal/load/pkg.go

    }
    
    // CoverSetup holds parameters related to coverage setup for a given package (covermode, etc).
    type CoverSetup struct {
    	Mode    string // coverage mode for this package
    	Cfg     string // path to config file to pass to "go tool cover"
    	GenMeta bool   // ask cover tool to emit a static meta data if set
    }
    
    func (p *Package) copyBuild(opts PackageOpts, pp *build.Package) {
    	p.Internal.Build = pp
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/extract_outside_compilation.mlir

        return %0#0, %0#1, %0#2, %0#3 : tensor<?x3xi32>, tensor<?x3xi32>, tensor<3x!tf_type.string>, tensor<3x!tf_type.string>
      }
    }
    // -----
    
    // Tests that a an error is reported when the pass results in a cluster output
    // with a non-XLA type. The simplest way this can happen is if the inputing op
    // is not marked for outside compilation. In general control, data, and side
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 129.6K bytes
    - Viewed (0)
  5. tests/integration/pilot/common/routing.go

    					Count: 1,
    					Port: echo.Port{
    						Name: "auto-http",
    					},
    					HTTP: echo.HTTP{
    						Headers: HostHeader(h),
    					},
    					// check mTLS to ensure we are not hitting pass-through cluster
    					Check: check.And(check.OK(), check.MTLSForHTTP()),
    				},
    			})
    		}
    		port = ports.HTTP.WorkloadPort
    		hosts = []string{
    			cfg.ClusterLocalFQDN(),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

      bool users_same_op = llvm::all_of(op->getUsers(), [&](Operation *user) {
        return user->getName() == first_user->getName();
      });
      if (!users_same_op) return failure();
    
      // Pass unpack operand to unary operation.
      OperationState new_unary_op_state(loc, first_user->getName().getStringRef(),
                                        op.getOperand(), op.getOperand().getType(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  7. pkg/controller/job/job_controller_test.go

    				t.Errorf("Unexpected conditions %v", actual.Status.Conditions)
    			}
    			// validate slow start
    			expectedLimit := 0
    			for pass := uint8(0); expectedLimit <= tc.podLimit; pass++ {
    				expectedLimit += controller.SlowStartInitialBatchSize << pass
    			}
    			if tc.podLimit > 0 && fakePodControl.CreateCallCount > expectedLimit {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

                                        Node* xla_computation_node,
                                        Node* pivot_node) {
      // Temporarily use "0" as "_device_ordinal". It will be rewritten with the
      // correct value in a later pass. We cannot just use placeholder value here
      // because FunctionDef instantiation does not allow placeholder value for
      // attributes.
      AttrValue device_ordinal_attr;
      device_ordinal_attr.set_i(0);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__discovery.k8s.io__v1_openapi.json

                "type": "string"
              },
              "nodeName": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 146.6K bytes
    - Viewed (0)
  10. pkg/config/validation/validation_test.go

    			},
    			"client CA bundle", "",
    		},
    		{
    			"pass through sds no certs",
    			&networking.ServerTLSSettings{
    				Mode:              networking.ServerTLSSettings_PASSTHROUGH,
    				ServerCertificate: "",
    				CaCertificates:    "",
    				CredentialName:    "sds-name",
    			},
    			"", "PASSTHROUGH mode does not use certificates",
    		},
    		{
    			"pass through sds crl",
    			&networking.ServerTLSSettings{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
Back to top