Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 162 for clobber (0.47 sec)

  1. tools/docker-builder/docker.go

    	j, err := json.MarshalIndent(bf, "", "  ")
    	if err != nil {
    		return nil, err
    	}
    	_ = os.MkdirAll(filepath.Join(testenv.LocalOut, "dockerx_build"), 0o755)
    
    	if a.NoClobber {
    		e := errgroup.Group{}
    		for _, i := range sets.SortedList(allDestinations) {
    			if strings.HasSuffix(i, ":latest") { // Allow clobbering of latest - don't verify existence
    				continue
    			}
    			i := i
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 01:07:39 UTC 2023
    - 11K bytes
    - Viewed (0)
  2. src/runtime/sys_linux_mips64x.s

    TEXT runtime·clone(SB),NOSPLIT|NOFRAME,$0
    	MOVW	flags+0(FP), R4
    	MOVV	stk+8(FP), R5
    
    	// Copy mp, gp, fn off parent stack for use by child.
    	// Careful: Linux system call clobbers ???.
    	MOVV	mp+16(FP), R16
    	MOVV	gp+24(FP), R17
    	MOVV	fn+32(FP), R18
    
    	MOVV	R16, -8(R5)
    	MOVV	R17, -16(R5)
    	MOVV	R18, -24(R5)
    	MOVV	$1234, R16
    	MOVV	R16, -32(R5)
    
    	MOVV	$SYS_clone, R2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 18 20:57:24 UTC 2022
    - 12K bytes
    - Viewed (0)
  3. pkg/log/config.go

    }
    
    // Sync flushes any buffered log entries.
    // Processes should normally take care to call Sync before exiting.
    func Sync() error {
    	return funcs.Load().(patchTable).sync()
    }
    
    // Close implements io.Closer.
    func Close() error {
    	return funcs.Load().(patchTable).close()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 26 20:38:10 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/nilcheck.go

    				}
    				// This instruction is guaranteed to fault if ptr is nil.
    				// Any previous nil check op is unnecessary.
    				unnecessary.set(ptr.ID, int32(i))
    			}
    		}
    		// Remove values we've clobbered with OpUnknown.
    		i := firstToRemove
    		for j := i; j < len(b.Values); j++ {
    			v := b.Values[j]
    			if v.Op != OpUnknown {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 20:45:54 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  5. internal/hash/reader.go

    		return map[string]string{r.contentHash.Type.String(): r.trailer.Get(r.contentHash.Type.Key())}
    	}
    	return map[string]string{r.contentHash.Type.String(): r.contentHash.Encoded}
    }
    
    var _ io.Closer = (*Reader)(nil) // compiler check
    
    // Close and release resources.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Sep 18 17:00:54 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  6. src/net/http/response.go

    			// Reset it to a known zero reader, in case underlying one
    			// is unhappy being read repeatedly.
    			r1.Body = NoBody
    		} else {
    			r1.ContentLength = -1
    			r1.Body = struct {
    				io.Reader
    				io.Closer
    			}{
    				io.MultiReader(bytes.NewReader(buf[:1]), r.Body),
    				r.Body,
    			}
    		}
    	}
    	// If we're sending a non-chunked HTTP/1.1 response without a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  7. src/runtime/sys_linux_loong64.s

    TEXT runtime·clone(SB),NOSPLIT|NOFRAME,$0
    	MOVW	flags+0(FP), R4
    	MOVV	stk+8(FP), R5
    
    	// Copy mp, gp, fn off parent stack for use by child.
    	// Careful: Linux system call clobbers ???.
    	MOVV	mp+16(FP), R23
    	MOVV	gp+24(FP), R24
    	MOVV	fn+32(FP), R25
    
    	MOVV	R23, -8(R5)
    	MOVV	R24, -16(R5)
    	MOVV	R25, -24(R5)
    	MOVV	$1234, R23
    	MOVV	R23, -32(R5)
    
    	MOVV	$SYS_clone, R11
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 20:58:13 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  8. guava/src/com/google/common/math/LongMath.java

                deltaToCeiling++;
              }
    
              int diff = Longs.compare(deltaToFloor, deltaToCeiling);
              if (diff < 0) { // closer to floor
                return roundFloorAsDouble;
              } else if (diff > 0) { // closer to ceiling
                return roundCeilingAsDouble;
              }
              // halfway between the representable values; do the half-whatever logic
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 44.6K bytes
    - Viewed (0)
  9. pkg/kubelet/cm/topologymanager/policy.go

    	//   3cc. candidate.NUMANodeAffinity.Count() == current.NUMANodeAffinity.Count()
    	//
    	// For case (3ca), we want to immediately update bestHint to the
    	// candidate hint because that will bring us closer to the (higher)
    	// value of bestNonPreferredAffinityCount.
    	//
    	// For case (3cb), we want to stick with the current bestHint because
    	// choosing the candidate hint would strictly move us further away from
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 03 09:45:25 UTC 2022
    - 12.7K bytes
    - Viewed (0)
  10. src/cmd/go/internal/vcweb/vcweb.go

    		return nil, err
    	}
    
    	return s, nil
    }
    
    func (s *Server) Close() error {
    	var firstErr error
    	for _, h := range s.vcsHandlers {
    		if c, ok := h.(io.Closer); ok {
    			if closeErr := c.Close(); firstErr == nil {
    				firstErr = closeErr
    			}
    		}
    	}
    	return firstErr
    }
    
    // gitConfig contains a ~/.gitconfg file that attempts to provide
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 12.1K bytes
    - Viewed (0)
Back to top