Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 2,363 for happen (0.18 sec)

  1. platforms/software/antlr/src/main/java/org/gradle/api/plugins/antlr/internal/AntlrExecuter.java

            }
    
            public final AntlrResult process(AntlrSpec spec) {
                try {
                    return doProcess(spec);
                } catch (ClassNotFoundException e) {
                    //this shouldn't happen if you call check availability with #available first
                    throw new GradleException("Cannot process antlr sources", e);
                }
            }
    
            /**
             * process used for antlr3/4
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 14:52:10 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  2. src/runtime/HACKING.md

      the locked region, reads do not need to be atomic, but the write
      does. Outside the locked region, reads need to be atomic.
    
    * Reads that only happen during STW, where no writes can happen during
      STW, do not need to be atomic.
    
    That said, the advice from the Go memory model stands: "Don't be
    [too] clever." The performance of the runtime matters, but its
    robustness matters more.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/BlockingHttpServer.java

    import java.util.logging.ConsoleHandler;
    import java.util.logging.Level;
    import java.util.logging.Logger;
    
    /**
     * An HTTP server that allows a test to synchronize and make assertions about concurrent activities that happen in another process.
     * For example, can be used to that certain tasks do or do not execute in parallel.
     */
    public class BlockingHttpServer extends ExternalResource implements ResettableExpectations {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  8. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/impl/OutputSnapshotUtil.java

                        FileSystemSnapshot previous = previousSnapshots.get(key);
                        // If the property was null before (can only happen for tasks with optional outputs)
                        if (previous == null) {
                            return FileSystemSnapshot.EMPTY;
                        }
                        //noinspection ConstantConditions
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top