Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 85 for Result (0.23 sec)

  1. pkg/apis/admissionregistration/validation/validation_test.go

    		})
    	}
    }
    
    func get65MatchConditions() []admissionregistration.MatchCondition {
    	result := []admissionregistration.MatchCondition{}
    	for i := 0; i < 65; i++ {
    		result = append(result, admissionregistration.MatchCondition{
    			Name:       fmt.Sprintf("test%v", i),
    			Expression: "true",
    		})
    	}
    	return result
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 147.1K bytes
    - Viewed (0)
  2. cluster/gce/util.sh

        node_labels="${node_labels:+${node_labels},}${WINDOWS_NON_MASTER_NODE_LABELS}"
      fi
      echo "$node_labels"
    }
    
    # yaml-map-string-stringarray converts the encoded structure to yaml format, and echoes the result
    # under the provided name. If the encoded structure is empty, echoes nothing.
    # 1: name to be output in yaml
    # 2: encoded map-string-string (which may contain duplicate keys - resulting in map-string-stringarray)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  3. pkg/scheduler/internal/queue/scheduling_queue_test.go

    				t.Errorf("Unexpected error from AddUnschedulableIfNotPresent: %v", err)
    			}
    
    			// Activate it again.
    			q.MoveAllToActiveOrBackoffQueue(logger, PvAdd, nil, nil, nil)
    
    			// Now check result of Pop.
    			poppedPod = popPod(t, logger, q, pod)
    			if len(poppedPod.PendingPlugins) > 0 {
    				t.Errorf("QueuedPodInfo from Pop should have empty PendingPlugins, got instead: %+v", poppedPod)
    			}
    		})
    	}
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/generic.rules

    // growslice so that we don't have to spill/restore the new length around the growslice call.
    // The exception here is that if the new length is a constant, avoiding spilling it
    // is pointless and its constantness is sometimes useful for subsequent optimizations.
    // See issue 56440.
    // Note there are 2 rules here, one for the pre-decomposed []T result and one for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/exec.go

    	// See golang.org/issue/22220.
    	// We still call updateBuildID to update a.buildID, which is important
    	// for test result caching, but passing rewrite=false (final arg)
    	// means we don't actually rewrite the binary, nor store the
    	// result into the cache. That's probably a net win:
    	// less cache space wasted on large binaries we are not likely to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/CacheTest.kt

        }
      }
    
      /** Returns a gzipped copy of `bytes`.  */
      fun gzip(data: String): Buffer {
        val result = Buffer()
        val sink = GzipSink(result).buffer()
        sink.writeUtf8(data)
        sink.close()
        return result
      }
    
      companion object {
        private val NULL_HOSTNAME_VERIFIER = HostnameVerifier { hostname, session -> true }
      }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 108.6K bytes
    - Viewed (0)
  7. pkg/controller/daemon/daemon_controller_test.go

    			}(),
    			newNode:        newNode("node1", nil),
    			expectedResult: false,
    		},
    	}
    
    	for _, c := range cases {
    		result := shouldIgnoreNodeUpdate(*c.oldNode, *c.newNode)
    
    		if result != c.expectedResult {
    			t.Errorf("[%s] unexpected results: %v", c.name, result)
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  8. src/cmd/go/internal/load/pkg.go

    			ImportStack: stk.Copy(),
    			Err:         err,
    		}
    		perr.setPos(importPos)
    		return p, perr
    	}
    
    	return p, nil
    }
    
    // loadPackageData loads information needed to construct a *Package. The result
    // is cached, and later calls to loadPackageData for the same package will return
    // the same data.
    //
    // loadPackageData returns a non-nil package even if err is non-nil unless
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  9. pkg/controller/job/job_controller_test.go

    		},
    	}}
    }
    
    func getConditionsByType(list []batch.JobCondition, cType batch.JobConditionType) []*batch.JobCondition {
    	var result []*batch.JobCondition
    	for i := range list {
    		if list[i].Type == cType {
    			result = append(result, &list[i])
    		}
    	}
    	return result
    }
    
    func (pb podBuilder) name(n string) podBuilder {
    	pb.Name = n
    	return pb
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	}
    	return
    }
    
    func RegOpenKeyEx(key Handle, subkey *uint16, options uint32, desiredAccess uint32, result *Handle) (regerrno error) {
    	r0, _, _ := syscall.Syscall6(procRegOpenKeyExW.Addr(), 5, uintptr(key), uintptr(unsafe.Pointer(subkey)), uintptr(options), uintptr(desiredAccess), uintptr(unsafe.Pointer(result)), 0)
    	if r0 != 0 {
    		regerrno = syscall.Errno(r0)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
Back to top