Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 197 for gStates (0.38 sec)

  1. guava/src/com/google/common/collect/ImmutableSortedSet.java

      /**
       * {@inheritDoc}
       *
       * <p>This method returns a serializable {@code ImmutableSortedSet}.
       *
       * <p>The {@link SortedSet#headSet} documentation states that a subset of a subset throws an
       * {@link IllegalArgumentException} if passed a {@code toElement} greater than an earlier {@code
       * toElement}. However, this method doesn't throw an exception in that situation, but instead
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 08 03:01:02 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  2. src/image/jpeg/scan.go

    			if cs == comp.c {
    				compIndex = j
    			}
    		}
    		if compIndex < 0 {
    			return FormatError("unknown component selector")
    		}
    		scan[i].compIndex = uint8(compIndex)
    		// Section B.2.3 states that "the value of Cs_j shall be different from
    		// the values of Cs_1 through Cs_(j-1)". Since we have previously
    		// verified that a frame's component identifiers (C_i values in section
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 00:46:29 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/ImmutableSortedSet.java

      /**
       * {@inheritDoc}
       *
       * <p>This method returns a serializable {@code ImmutableSortedSet}.
       *
       * <p>The {@link SortedSet#headSet} documentation states that a subset of a subset throws an
       * {@link IllegalArgumentException} if passed a {@code toElement} greater than an earlier {@code
       * toElement}. However, this method doesn't throw an exception in that situation, but instead
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/IncrementalBuildIntegrationTest.groovy

            writeDirTransformerTask()
            buildFile << """
                def srcDir = file('src')
                // Note: task mutates inputs of transform1 just before transform1 executes
                task src1 {
                    outputs.dir(srcDir)
                    outputs.upToDateWhen { false }
                    doLast {
                        srcDir.mkdirs()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/ComponentState.java

        }
    
        public void removeOutgoingEdges() {
            for (NodeState configuration : getNodes()) {
                configuration.deselect();
            }
        }
    
        /**
         * Describes the possible states of a component in the graph.
         */
        enum ComponentSelectionState {
            /**
             * A selectable component is either new to the graph, or has been visited before,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 17K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/decompose_reduce_dataset.cc

          reduce_dataset->getAttrOfType<ArrayAttr>("Tstate").size();
      for (int i = 0; i < state_size; ++i) {
        body_returns.push_back(dataset_if.getResult(i));
      }
      // Copy the arguments but skip the states and the loop condition
      // which are updated in while body.
      for (int i = state_size + 1; i < body_args.size(); ++i) {
        body_returns.push_back(body_args[i]);
      }
      builder.create<TF::YieldOp>(loc,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/admissionregistration/v1beta1/generated.proto

      // Default to the empty LabelSelector, which matches everything.
      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.LabelSelector objectSelector = 11;
    
      // SideEffects states whether this webhook has side effects.
      // Acceptable values are: Unknown, None, Some, NoneOnDryRun
      // Webhooks with side effects MUST implement a reconciliation system, since a request may be
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  8. pkg/kubelet/prober/prober_manager.go

    	CleanupPods(desiredPods map[types.UID]sets.Empty)
    
    	// UpdatePodStatus modifies the given PodStatus with the appropriate Ready state for each
    	// container based on container running status, cached probe results and worker states.
    	UpdatePodStatus(*v1.Pod, *v1.PodStatus)
    }
    
    type manager struct {
    	// Map of active workers for probes
    	workers map[probeKey]*worker
    	// Lock for accessing & mutating workers
    	workerLock sync.RWMutex
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 07 22:26:12 UTC 2023
    - 11K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/config_test.go

    		t.Errorf("invalid response: %#v", w)
    	}
    	if len(backend.events) == 0 {
    		t.Error("expected audit events, got none")
    	}
    	// these should all be the same because the handler chain mutates the event in place
    	want := map[string]string{"pandas": "are awesome", "dogs": "are okay"}
    	for _, event := range backend.events {
    		if event.Stage != auditinternal.StageResponseComplete {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  10. guava/src/com/google/common/util/concurrent/AtomicLongMap.java

        return remove(key, 0);
      }
    
      /**
       * Removes all mappings from this map whose values are zero.
       *
       * <p>This method is not atomic: the map may be visible in intermediate states, where some of the
       * zero values have been removed and others have not.
       */
      public void removeAllZeros() {
        map.values().removeIf(x -> x == 0);
      }
    
      /**
    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