Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 907 for happen (0.12 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/elfexec/elfexec.go

    			return nil, err
    		}
    
    		notes = append(notes, elfNote{Name: name, Desc: desc, Type: typ})
    
    		// Drop padding bytes until the next note or the end of the section,
    		// whichever comes first.
    		for n := padding(len(desc)); n > 0; n-- {
    			if _, err := r.ReadByte(); err == io.EOF {
    				// We hit the end of the section before an alignment boundary.
    				// This can happen if this section is at the end of the file or the next
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/kube/controller/endpointslice.go

    //   - It is an endpoint without an associated Pod. In this case, expectPod will be false.
    //   - It is an endpoint with an associate Pod, but its not found. In this case, expectPod will be true.
    //     this may happen due to eventually consistency issues, out of order events, etc. In this case, the caller
    //     should not precede with the endpoint, or inaccurate information would be sent which may have impacts on
    //     correctness and security.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/dra/plugin/noderesources.go

    //
    // If a kubeClient is provided, then it synchronizes ResourceSlices
    // with the resource information provided by plugins. Without it,
    // the controller is inactive. This can happen when kubelet is run stand-alone
    // without an apiserver. In that case we can't and don't need to publish
    // ResourceSlices.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 20:12:53 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  4. src/runtime/race.go

    	return int(n)
    }
    
    // RaceAcquire/RaceRelease/RaceReleaseMerge establish happens-before relations
    // between goroutines. These inform the race detector about actual synchronization
    // that it can't see for some reason (e.g. synchronization within RaceDisable/RaceEnable
    // sections of code).
    // RaceAcquire establishes a happens-before relation with the preceding
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  5. pilot/pkg/xds/delta.go

    			Subscribed:   sets.New(subs...),
    			Unsubscribed: sets.New(req.ResourceNamesUnsubscribe...).Delete("*"),
    		},
    	}
    	// SidecarScope for the proxy may has not been updated based on this pushContext.
    	// It can happen when `processRequest` comes after push context has been updated(s.initPushContext),
    	// but before proxy's SidecarScope has been updated(s.updateProxy).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  6. pkg/controller/resourceclaim/controller.go

    				return true, "must create ResourceClaim from template"
    			}
    			// User needs to create claim.
    			return false, "claim is missing and must be created by user"
    		}
    		if err != nil {
    			// Shouldn't happen.
    			return true, fmt.Sprintf("internal error while checking for claim: %v", err)
    		}
    
    		if checkOwner &&
    			resourceclaim.IsForPod(pod, claim) != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/apf_controller.go

    	}
    	if selectedFlowSchema == nil {
    		// This should never happen. If the requestDigest's User is a part of
    		// system:authenticated or system:unauthenticated, the catch-all flow
    		// schema should match it. However, if that invariant somehow fails,
    		// fallback to the catch-all flow schema anyway.
    		if catchAllFlowSchema == nil {
    			// This should absolutely never, ever happen! APF guarantees two
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 48.8K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/dra/manager.go

    		}
    		// The claim name might be nil if no underlying resource claim
    		// was generated for the referenced claim. There are valid use
    		// cases when this might happen, so we simply skip it.
    		if claimName == nil {
    			continue
    		}
    		claimNames = append(claimNames, *claimName)
    	}
    	return m.unprepareResources(pod.UID, pod.Namespace, claimNames)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 13:23:29 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  9. pkg/controller/servicecidrs/servicecidrs_controller.go

    	if !ok || managedBy != ipallocator.ControllerName {
    		return []string{}
    	}
    
    	address, err := netip.ParseAddr(ip.Name)
    	if err != nil {
    		// This should not happen, the IPAddress object validates
    		// the name is a valid IPAddress
    		return []string{}
    	}
    
    	c.muTree.Lock()
    	defer c.muTree.Unlock()
    	serviceCIDRs := []string{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 18K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/io/CharSourceTest.java

        try {
          in.copyTo(out);
          fail();
        } catch (IOException expected) {
          return expected.getSuppressed().length;
        }
        throw new AssertionError(); // can't happen
      }
    
      private static CharSource newNormalCharSource() {
        return CharSource.wrap("ABC");
      }
    
      private static CharSink newNormalCharSink() {
        return new CharSink() {
          @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 15:26:58 UTC 2024
    - 10.5K bytes
    - Viewed (0)
Back to top