Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 558 for effects (0.12 sec)

  1. src/runtime/netpoll_solaris.go

    			mode += 'r'
    			clear |= _POLLIN
    		}
    		if (ev.portev_events & (_POLLOUT | _POLLHUP | _POLLERR)) != 0 {
    			mode += 'w'
    			clear |= _POLLOUT
    		}
    		// To effect edge-triggered events, we need to be sure to
    		// update our association with whatever events were not
    		// set with the event. For example if we are registered
    		// for POLLIN|POLLOUT, and we get POLLIN, besides waking
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  2. src/cmd/trace/gen.go

    type stackSampleGenerator[R resource] struct {
    	// getResource is a function to extract a resource ID from a stack sample event.
    	getResource func(*trace.Event) R
    }
    
    // StackSample implements a stack sample event handler. It expects ev to be one such event.
    func (g *stackSampleGenerator[R]) StackSample(ctx *traceContext, ev *trace.Event) {
    	id := g.getResource(ev)
    	if id == R(noResource) {
    		// We have nowhere to put this in the UI.
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/RISCV64Ops.go

    			},
    			typ:            "Mem",
    			faultOnNilArg0: true,
    		},
    
    		// duffcopy
    		// arg0 = address of dst memory (in X25, changed as side effect)
    		// arg1 = address of src memory (in X24, changed as side effect)
    		// arg2 = mem
    		// auxint = offset into duffcopy code to start executing
    		// X1 (link register) changed because of function call
    		// returns mem
    		{
    			name:      "DUFFCOPY",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  4. src/time/zoneinfo.go

    }
    
    // A zoneTrans represents a single time zone transition.
    type zoneTrans struct {
    	when         int64 // transition time, in seconds since 1970 GMT
    	index        uint8 // the index of the zone that goes into effect at that time
    	isstd, isutc bool  // ignored - no idea what these mean
    }
    
    // alpha and omega are the beginning and end of time for zone
    // transitions.
    const (
    	alpha = -1 << 63  // math.MinInt64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:30 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  5. pkg/controller/podgc/gc_controller_test.go

    				{name: "worker-3", readyCondition: v1.ConditionFalse, taints: []v1.Taint{{Key: v1.TaintNodeOutOfService,
    					Effect: v1.TaintEffectNoSchedule}}},
    				// terminated pods on this node should be force deleted
    				{name: "worker-4", readyCondition: v1.ConditionFalse, taints: []v1.Taint{{Key: v1.TaintNodeOutOfService,
    					Effect: v1.TaintEffectPreferNoSchedule}}},
    				// terminated pods on this node should be force deleted
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 08:16:48 UTC 2024
    - 29K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/CompactLinkedHashMap.java

          @Override
          public @Nullable Object[] toArray() {
            return ObjectArrays.toArrayImpl(this);
          }
    
          @Override
          @SuppressWarnings("nullness") // b/192354773 in our checker affects toArray declarations
          public <T extends @Nullable Object> T[] toArray(T[] a) {
            return ObjectArrays.toArrayImpl(this, a);
          }
    
          @Override
          public Spliterator<K> spliterator() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  7. src/testing/benchmark.go

    func (b *B) SetBytes(n int64) { b.bytes = n }
    
    // ReportAllocs enables malloc statistics for this benchmark.
    // It is equivalent to setting -test.benchmem, but it only affects the
    // benchmark function that calls ReportAllocs.
    func (b *B) ReportAllocs() {
    	b.showAllocResult = true
    }
    
    // runN runs a single benchmark for the specified number of iterations.
    func (b *B) runN(n int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  8. istioctl/pkg/analyze/analyze.go

      # Analyze the current live cluster for a specific revision
      istioctl analyze --revision 1-16
    
      # Analyze the current live cluster, simulating the effect of applying additional yaml files
      istioctl analyze a.yaml b.yaml my-app-config/
    
      # Analyze the current live cluster, simulating the effect of applying a directory of config recursively
      istioctl analyze --recursive my-istio-config/
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 17K bytes
    - Viewed (0)
  9. platforms/extensibility/unit-test-fixtures/src/main/java/org/gradle/testfixtures/internal/ProjectBuilderImpl.java

            projectDir = (projectDir != null) ? projectDir.getAbsoluteFile() : new File(parentProject.getProjectDir(), name);
            // Descriptor is added to registry as a side effect
            DefaultProjectDescriptor projectDescriptor = new DefaultProjectDescriptor(parentDescriptor, name, projectDir, descriptorRegistry, parentProject.getServices().get(FileResolver.class));
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:51:36 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  10. guava/src/com/google/common/util/concurrent/AtomicLongMap.java

       */
      @CanIgnoreReturnValue
      public long put(K key, long newValue) {
        return getAndUpdate(key, x -> newValue);
      }
    
      /**
       * Copies all of the mappings from the specified map to this map. The effect of this call is
       * equivalent to that of calling {@code put(k, v)} on this map once for each mapping from key
       * {@code k} to value {@code v} in the specified map. The behavior of this operation is undefined
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 11.8K bytes
    - Viewed (0)
Back to top