Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 119 for Everything (0.16 sec)

  1. pkg/scheduler/framework/preemption/preemption.go

    	return potentialNodes, nodeStatuses
    }
    
    func getPodDisruptionBudgets(pdbLister policylisters.PodDisruptionBudgetLister) ([]*policy.PodDisruptionBudget, error) {
    	if pdbLister != nil {
    		return pdbLister.List(labels.Everything())
    	}
    	return nil, nil
    }
    
    // pickOneNodeForPreemption chooses one node among the given nodes.
    // It assumes pods in each map entry are ordered by decreasing priority.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  2. src/go/types/check.go

    				//
    				// If there is no valid check.version, then we don't really know what
    				// Go version to apply.
    				// Legacy tools may do this, and they historically have accepted everything.
    				// Preserve that behavior by ignoring //go:build constraints entirely in that
    				// case (!pkgVersionOk).
    				if cmp > 0 || cmp < 0 && downgradeOk {
    					v = file.GoVersion
    				}
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  3. README.md

        * Check that it has an optional attribute `is_offer`, that should be a `bool`, if present.
        * All this would also work for deeply nested JSON objects.
    * Convert from and to JSON automatically.
    * Document everything with OpenAPI, that can be used by:
        * Interactive documentation systems.
        * Automatic client code generation systems, for many languages.
    * Provide 2 interactive documentation web interfaces directly.
    
    ---
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 30 13:28:20 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  4. src/go/doc/example.go

    					// Keep only the names that were mentioned in the example.
    					// Exception: the multiple names have a single initializer (which
    					// would be a function call with multiple return values). In that
    					// case, keep everything.
    					if len(s.Names) > 1 && len(s.Values) == 1 {
    						specs = append(specs, s)
    						continue
    					}
    					ns := *s
    					ns.Names = nil
    					ns.Values = nil
    					for i, n := range s.Names {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  5. tests/integration/README.md

        return
    }
    
    func NewOrFail(t test.Failer, ctx resource.Context) Instance {
        i, err := New(ctx)
        if err != nil {
            t.Fatal(err)
        }
        return i
    }
    ```
    
    Now that everything is in place, you can begin using your component:
    
    ```go
    func TestMyLogic(t *testing.T) {
        framework.
            NewTest(t).
            Run(func(ctx framework.TestContext) {
                // Create the components.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/quantization/lite/quantize_weights_test.cc

              *op_code = GetBuiltinCode(model->operator_codes()->Get(op_code_idx));
              return true;
            }
          }
        }
        return false;
      }
    };
    
    // Returns true if everything between the two graphs
    // are identical except for name field.
    // Used when comparing graphs after optimization passes,
    // as tensor names may have changed via MLIR constant folding process.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  7. src/runtime/panic.go

    //   - github.com/sagernet/gvisor
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname throw
    //go:nosplit
    func throw(s string) {
    	// Everything throw does should be recursively nosplit so it
    	// can be called even when it's unsafe to grow the stack.
    	systemstack(func() {
    		print("fatal error: ")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/phases/upgrade/staticpods_test.go

    				if err != nil {
    					t.Fatalf("error reading embedded certs from %s: %v", kubeConfig, err)
    				}
    				certMaps[kubeConfig] = *newCerts[0].SerialNumber
    			}
    
    			// Renew everything
    			rm, err := renewal.NewManager(&cfg.ClusterConfiguration, tmpDir)
    			if err != nil {
    				t.Fatalf("Failed to create the certificate renewal manager: %v", err)
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 32K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/check.go

    				//
    				// If there is no valid check.version, then we don't really know what
    				// Go version to apply.
    				// Legacy tools may do this, and they historically have accepted everything.
    				// Preserve that behavior by ignoring //go:build constraints entirely in that
    				// case (!pkgVersionOk).
    				if cmp > 0 || cmp < 0 && downgradeOk {
    					v = file.GoVersion
    				}
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  10. pkg/controller/daemon/update.go

    	}
    
    	// List all histories to include those that don't match the selector anymore
    	// but have a ControllerRef pointing to the controller.
    	histories, err := dsc.historyLister.ControllerRevisions(ds.Namespace).List(labels.Everything())
    	if err != nil {
    		return nil, err
    	}
    	// If any adoptions are attempted, we should first recheck for deletion with
    	// an uncached quorum read sometime after listing Pods (see #42639).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 13 16:53:53 UTC 2024
    - 24.4K bytes
    - Viewed (0)
Back to top