Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for Resuming (0.18 sec)

  1. pkg/controller/job/job_controller_test.go

    			expectedCreations:         0,
    			expectedDeletions:         0,
    			expectedActive:            3,
    			expectedReady:             ptr.To[int32](0),
    			expectedTerminating:       ptr.To[int32](0),
    		},
    		"resuming a suspended job": {
    			wasSuspended:            true,
    			suspend:                 false,
    			parallelism:             2,
    			completions:             4,
    			backoffLimit:            6,
    			expectedCreations:       2,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  2. src/runtime/proc.go

    					trace.GoStart()
    				}
    			})
    		}
    		// There's a cpu for us, so we can run.
    		gp.m.p.ptr().syscalltick++
    		// We need to cas the status and scan before resuming...
    		casgstatus(gp, _Gsyscall, _Grunning)
    		if trace.ok() {
    			traceRelease(trace)
    		}
    
    		// Garbage collector isn't running (since we are),
    		// so okay to clear syscallsp.
    		gp.syscallsp = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

          ClosingFuture<?> future1, ClosingFuture<?>... moreFutures) {
        return whenAllComplete(asList(future1, moreFutures));
      }
    
      /**
       * Starts specifying how to combine {@link ClosingFuture}s into a single pipeline, assuming they
       * all succeed. If any fail, the resulting pipeline will fail.
       *
       * @throws IllegalStateException if a {@code ClosingFuture} has already been derived from any of
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
  4. guava/src/com/google/common/util/concurrent/ClosingFuture.java

          ClosingFuture<?> future1, ClosingFuture<?>... moreFutures) {
        return whenAllComplete(asList(future1, moreFutures));
      }
    
      /**
       * Starts specifying how to combine {@link ClosingFuture}s into a single pipeline, assuming they
       * all succeed. If any fail, the resulting pipeline will fail.
       *
       * @throws IllegalStateException if a {@code ClosingFuture} has already been derived from any of
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 98.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

                                     .getValues<int8_t>();
    
      ArrayRef<int64_t> filter_shape =
          filter_constant_op.getType().cast<TensorType>().getShape();
    
      // Reverse the shapes. This makes sense, assuming that the filter tensor has a
      // rank of 2 (no batch dimension).
      SmallVector<int64_t, 2> new_filter_shape(filter_shape.rbegin(),
                                               filter_shape.rend());
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet_pods.go

    			oldStatus != nil && // we have an old status
    			oldStatus.State.Running != nil: // our previous status was running
    			// if this happens, then we know that this container was previously running and isn't anymore (assuming the CRI isn't failing to return running containers).
    			// you can imagine this happening in cases where a container failed and the kubelet didn't ask about it in time to see the result.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/data.go

    		// Just generate trampoline for now (which will turn a direct call to
    		// an indirect call, which at least builds).
    		limit = 1
    	}
    
    	// First pass: assign addresses assuming the program is small and will
    	// not require trampoline generation.
    	big := false
    	for _, s := range ctxt.Textp {
    		sect, n, va = assignAddress(ctxt, sect, n, s, va, false, big)
    		if va-start >= limit {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/smb1/SmbFile.java

     * equals if their server IP addresses are equal and the canonicalized
     * representation of their URLs, minus authentication parameters, are
     * case insensitivly and lexographically equal.
     * <p/>
     * For example, assuming the server <code>angus</code> resolves to the
     * <code>192.168.1.15</code> IP address, the below URLs would result in
     * <code>SmbFile</code>s that are equal.
     *
     * <p><blockquote><pre>
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
  9. src/cmd/go/internal/work/exec.go

    	case "android", "dragonfly", "linux", "netbsd":
    		ldflags = append(ldflags, "-Wl,--build-id=none")
    	}
    	return ldflags
    }
    
    // mkAbsFiles converts files into a list of absolute files,
    // assuming they were originally relative to dir,
    // and returns that new list.
    func mkAbsFiles(dir string, files []string) []string {
    	abs := make([]string, len(files))
    	for i, f := range files {
    		if !filepath.IsAbs(f) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    		}
    		lines[i] = line[len(prefix):]
    	}
    
    	joined := string(bytes.Join(lines, []byte{'\n'}))
    
    	// Convert rest of tabs to spaces since yaml doesnt like yabs
    	// (assuming 2 space alignment)
    	return strings.ReplaceAll(joined, "\t", "  ")
    }
    
    // Creates a *spec.Schema Schema by decoding the given YAML. Panics on error
    func mustSchema(source string) *schema.Structural {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
Back to top