Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 109 for Change (0.19 sec)

  1. doc/go1.17_spec.html

    	<li>the index <code>x</code> is <i>in range</i> if <code>0 &lt;= x &lt; len(a)</code>,
    	    otherwise it is <i>out of range</i></li>
    </ul>
    
    <p>
    For <code>a</code> of <a href="#Array_types">array type</a> <code>A</code>:
    </p>
    <ul>
    	<li>a <a href="#Constants">constant</a> index must be in range</li>
    	<li>if <code>x</code> is out of range at run time,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

            },
            "resourceVersion": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/SmbFile.java

            }
        }
    
    /**
     * Changes the name of the file this <code>SmbFile</code> represents to the name
     * designated by the <code>SmbFile</code> argument.
     * <p/>
     * <i>Remember: <code>SmbFile</code>s are immutible and therefore
     * the path associated with this <code>SmbFile</code> object will not
     * change). To access the renamed file it is necessary to construct a
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_pods.go

    		// podIPs field is populated for clusters even
    		// dual-stack feature flag is not enabled.
    		for _, hostIP := range hostIPs {
    			buffer.WriteString(fmt.Sprintf("%s\t%s.%s\t%s\n", hostIP, hostName, hostDomainName, hostName))
    		}
    	} else {
    		for _, hostIP := range hostIPs {
    			buffer.WriteString(fmt.Sprintf("%s\t%s\n", hostIP, hostName))
    		}
    	}
    	buffer.Write(hostsEntriesFromHostAliases(hostAliases))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  5. pkg/controller/daemon/daemon_controller_test.go

    			}
    			gotPods := map[string]bool{}
    			for node, pods := range nodesToDaemonPods {
    				for _, pod := range pods {
    					if pod.Spec.NodeName != node {
    						t.Errorf("pod %v grouped into %v but belongs in %v", pod.Name, node, pod.Spec.NodeName)
    					}
    					gotPods[pod.Name] = true
    				}
    			}
    			for _, pod := range tc.wantedPods {
    				if !gotPods[pod.Name] {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  6. pkg/scheduler/internal/queue/scheduling_queue_test.go

    			// Prepare activeQ/unschedulablePods/podBackoffQ according to the table
    			for _, qPodInfo := range tt.qPodInfoInActiveQ {
    				q.activeQ.Add(qPodInfo)
    			}
    
    			for _, qPodInfo := range tt.qPodInfoInUnschedulablePods {
    				q.unschedulablePods.addOrUpdate(qPodInfo)
    			}
    
    			for _, qPodInfo := range tt.qPodInfoInPodBackoffQ {
    				q.podBackoffQ.Add(qPodInfo)
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  7. src/cmd/go/internal/load/pkg.go

    			root.Error = err
    			root.Incomplete = true
    		}
    		if p1.Error == nil {
    			walk(p1)
    		}
    	}
    	for _, root := range roots {
    		walk(root)
    		for _, path := range root.TestImports {
    			walkTest(root, path)
    		}
    		for _, path := range root.XTestImports {
    			walkTest(root, path)
    		}
    	}
    	return all
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  8. pkg/kubelet/eviction/eviction_manager_test.go

    				Phase:   v1.PodFailed,
    				Reason:  "Evicted",
    				Message: "The node was low on resource: memory. Threshold quantity: 2Gi, available: 1500Mi. ",
    			},
    		},
    	}
    	for name, tc := range testCases {
    		for _, enablePodDisruptionConditions := range []bool{false, true} {
    			t.Run(fmt.Sprintf("%s;PodDisruptionConditions=%v", name, enablePodDisruptionConditions), func(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

        auto &cond_block = while_op.getCond().front();
        bool changed = false;
        for (int op_idx : llvm::seq<int>(0, while_op.getNumOperands())) {
          auto body_arg = body_block.getArgument(op_idx);
          auto cond_arg = cond_block.getArgument(op_idx);
          auto while_operand = while_op.getOperand(op_idx);
          // Do not change if the body and cond type differ since there is no type
          // to cast to.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  10. src/cmd/go/internal/work/exec.go

    OverlayLoop:
    	for _, fs := range nonGoFileLists {
    		for _, f := range fs {
    			if _, ok := fsys.OverlayPath(mkAbs(p.Dir, f)); ok {
    				a.nonGoOverlay = make(map[string]string)
    				break OverlayLoop
    			}
    		}
    	}
    	if a.nonGoOverlay != nil {
    		for _, fs := range nonGoFileLists {
    			for i := range fs {
    				from := mkAbs(p.Dir, fs[i])
    				opath, _ := fsys.OverlayPath(from)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
Back to top