Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 338 for happen (0.38 sec)

  1. pkg/scheduler/schedule_one.go

    	ctx = klog.NewContext(ctx, logger)
    	logger.V(4).Info("About to try and schedule pod", "pod", klog.KObj(pod))
    
    	fwk, err := sched.frameworkForPod(pod)
    	if err != nil {
    		// This shouldn't happen, because we only accept for scheduling the pods
    		// which specify a scheduler name that matches one of the profiles.
    		logger.Error(err, "Error occurred")
    		return
    	}
    	if sched.skipPodSchedule(ctx, fwk, pod) {
    		return
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 13:28:08 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/data.go

    // to relocsym happen in parallel; the assumption is that each
    // parallel thread will have its own state object.
    type relocSymState struct {
    	target *Target
    	ldr    *loader.Loader
    	err    *ErrorReporter
    	syms   *ArchSyms
    }
    
    // makeRelocSymState creates a relocSymState container object to
    // pass to relocsym(). If relocsym() calls happen in parallel,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  3. cmd/encryption-v1.go

    			if kind, ok := crypto.IsEncrypted(object.UserDefined); ok && kind == crypto.S3 && !crypto.IsMultiPart(object.UserDefined) {
    				SSES3SinglePartObjects[i] = true
    
    				metadata = append(metadata, object.UserDefined)
    				buckets = append(buckets, object.Bucket)
    				names = append(names, object.Name)
    			}
    		}
    
    		// If there are no SSE-S3 single-part objects
    		// we can skip the decryption process. However,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  4. pilot/pkg/bootstrap/server.go

    				caBundle, _ := s.RA.GetRootCertFromMeshConfig(signerName)
    				rootCertBytes = append(rootCertBytes, caBundle...)
    			} else {
    				rootCertBytes = append(rootCertBytes, s.RA.GetCAKeyCertBundle().GetRootCertPem()...)
    			}
    		}
    		if s.CA != nil {
    			rootCertBytes = append(rootCertBytes, s.CA.GetCAKeyCertBundle().GetRootCertPem()...)
    		}
    	}
    
    	if len(rootCertBytes) != 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/rewrite.go

    func read8(sym interface{}, off int64) uint8 {
    	lsym := sym.(*obj.LSym)
    	if off >= int64(len(lsym.P)) || off < 0 {
    		// Invalid index into the global sym.
    		// This can happen in dead code, so we don't want to panic.
    		// Just return any value, it will eventually get ignored.
    		// See issue 29215.
    		return 0
    	}
    	return lsym.P[off]
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet_pods.go

    		s.Conditions = append(s.Conditions, status.GeneratePodReadyToStartContainersCondition(pod, podStatus))
    	}
    	allContainerStatuses := append(s.InitContainerStatuses, s.ContainerStatuses...)
    	s.Conditions = append(s.Conditions, status.GeneratePodInitializedCondition(&pod.Spec, allContainerStatuses, s.Phase))
    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/erasure-multipart.go

    		MetadataOnly: true,
    	}
    	for _, part := range parts {
    		req.Files = append(req.Files, fmt.Sprintf("part.%d.meta", part.PartNumber))
    	}
    	partInfoFiles, err := readMultipleFiles(ctx, onlineDisks, req, writeQuorum)
    	if err != nil {
    		return oi, err
    	}
    	if len(partInfoFiles) != len(parts) {
    		// Should only happen through internal error
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  8. pkg/proxy/nftables/proxier.go

    			cidrsForProxier = append(cidrsForProxier, cidr)
    		}
    
    		if proxier.ipFamily == v1.IPv6Protocol && !isIPv4CIDR {
    			cidrsForProxier = append(cidrsForProxier, cidr)
    		}
    	}
    	proxier.serviceCIDRs = strings.Join(cidrsForProxier, ",")
    }
    
    const (
    	// Maximum length for one of our chain name prefixes, including the trailing
    	// hyphen.
    	chainNamePrefixLengthMax = 16
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  9. src/net/http/transport.go

    // wroteRequest is a check before recycling a connection that the previous write
    // (from writeLoop above) happened and was successful.
    func (pc *persistConn) wroteRequest() bool {
    	select {
    	case err := <-pc.writeErrCh:
    		// Common case: the write happened well before the response, so
    		// avoid creating a timer.
    		return err == nil
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProblemReportingIntegrationTest.groovy

                    @TaskAction
                    def go() {
                        try {
                            println("project = " + project)
                        } catch(Exception e) {
                            // should not happen, problems are collected
                            throw new RuntimeException("broken")
                        }
                    }
                }
    
                task problems(type: BrokenTask)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 56.7K bytes
    - Viewed (0)
Back to top