Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for reclen (0.23 sec)

  1. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	r1, _, e1 := syscall.Syscall6(procQueryInformationJobObject.Addr(), 5, uintptr(job), uintptr(JobObjectInformationClass), uintptr(JobObjectInformation), uintptr(JobObjectInformationLength), uintptr(unsafe.Pointer(retlen)), 0)
    	if r1 == 0 {
    		err = errnoErr(e1)
    	}
    	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)
  2. pkg/kubelet/kubelet_test.go

    					ContainerID: emptyContainerID,
    				}},
    			},
    		},
    		// For terminated container:
    		// * If there is no recent start error record, State should be Terminated, LastTerminationState should be retrieved from
    		// second latest terminated status;
    		// * If there is recent start error record, State should be Waiting, LastTerminationState should be retrieved from latest
    		// terminated status;
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/generic.rules

    (SliceLen (SelectN [0] (StaticLECall {sym} _ newLen:(Const(64|32)) _ _ _ _))) && isSameCall(sym, "runtime.growslice") => newLen
    (SelectN [1] (StaticCall {sym} _ newLen:(Const(64|32)) _ _ _ _)) && v.Type.IsInteger() && isSameCall(sym, "runtime.growslice") => newLen
    
    // Collapse moving A -> B -> C into just A -> C.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  4. cmd/site-replication.go

    	}
    	for group := range info.GroupStats {
    		c.healGroupPolicies(ctx, objAPI, group, info)
    	}
    
    	return nil
    }
    
    // heal iam policies present on this site to peers, provided current cluster has the most recent update.
    func (c *SiteReplicationSys) healPolicies(ctx context.Context, objAPI ObjectLayer, policy string, info srStatusInfo) error {
    	// create IAM policy on peer cluster if missing
    	ps := info.PolicyStats[policy]
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  5. src/net/http/transport_test.go

    	var wg sync.WaitGroup
    	for i := 0; i < 2; i++ {
    		wg.Add(1)
    		go func() {
    			defer wg.Done()
    			for j := 0; j < 10; j++ {
    				const reqLen = 6 * 1024 * 1024
    				req, _ := NewRequest("POST", ts.URL, &io.LimitedReader{R: neverEnding('x'), N: reqLen})
    				req.ContentLength = reqLen
    				resp, _ := ts.Client().Transport.RoundTrip(req)
    				if resp != nil {
    					resp.Body.Close()
    				}
    			}
    		}()
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet_pods.go

    	return kubecontainer.ParseContainerID(cID), nil
    }
    
    // GetKubeletContainerLogs returns logs from the container
    // TODO: this method is returning logs of random container attempts, when it should be returning the most recent attempt
    // or all of them.
    func (kl *Kubelet) GetKubeletContainerLogs(ctx context.Context, podFullName, containerName string, logOptions *v1.PodLogOptions, stdout, stderr io.Writer) error {
    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. cmd/bucket-replication.go

    	// ReplicateExistingDelete - audit trail for delete replication triggered for existing delete markers
    	ReplicateExistingDelete = "replicate:existing:delete"
    
    	// ReplicateMRF - audit trail for replication from Most Recent Failures (MRF) queue
    	ReplicateMRF = "replicate:mrf"
    	// ReplicateIncoming - audit trail of inline replication
    	ReplicateIncoming = "replicate:incoming"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/cache/LocalCache.java

        long last = -1L;
        for (int i = 0; i < CONTAINS_VALUE_RETRIES; i++) {
          long sum = 0L;
          for (Segment<K, V> segment : segments) {
            // ensure visibility of most recent completed write
            int unused = segment.count; // read-volatile
    
            AtomicReferenceArray<ReferenceEntry<K, V>> table = segment.table;
            for (int j = 0; j < table.length(); j++) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    	}
    	return save
    }
    
    // innerPrinter is an interface for types that can print themselves as
    // inner types.
    type innerPrinter interface {
    	printInner(*printState)
    }
    
    // Print the most recent inner type.  If save is not nil, only print
    // prefixes.
    func (ps *printState) printOneInner(save *[]AST) {
    	if len(ps.inner) == 0 {
    		panic("printOneInner called with no inner types")
    	}
    	ln := len(ps.inner)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__autoscaling__v1_openapi.json

              },
              "observedGeneration": {
                "description": "observedGeneration is the most recent generation observed by this autoscaler.",
                "format": "int64",
                "type": "integer"
              }
            },
            "required": [
              "currentReplicas",
              "desiredReplicas"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 152.9K bytes
    - Viewed (0)
Back to top