Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 470 for gStates (0.55 sec)

  1. src/html/template/transition.go

    }
    
    var (
    	specialTagEndPrefix = []byte("</")
    	tagEndSeparators    = []byte("> \t\n\f/")
    )
    
    // tSpecialTagEnd is the context transition function for raw text and RCDATA
    // element states.
    func tSpecialTagEnd(c context, s []byte) (context, int) {
    	if c.element != elementNone {
    		// script end tags ("</script") within script literals are ignored, so that
    		// we can properly escape them.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 19:54:31 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/artifacts/DependencyConstraint.java

         *
         * @return the attributes container for this dependency
         *
         * @since 4.8
         */
        @Override
        AttributeContainer getAttributes();
    
        /**
         * Mutates the attributes of this constraint. Attributes are used during dependency resolution to select the appropriate
         * target variant, in particular when a single component provides different variants.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 22 14:14:42 UTC 2019
    - 2.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/quantization/quantization_info.proto

      message QuantParams {
        // The tensor name has the following convention:
        //     tensor_name := op_name | op_name  ’:’  port_number.
        // If the op has only one port, op_name can be used.
        // If the op has internal states, such as fused LSTM, the port_number should
        // follow a predefined convention.
        oneof name_oneof {
          string name = 1;
    
          // An regex can be used to match multiple tensors.
          string name_regex = 2;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 08 03:45:04 UTC 2019
    - 2.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/util/feature/feature_gate.go

    	// DefaultMutableFeatureGate is a mutable version of DefaultFeatureGate.
    	// Only top-level commands/options setup and the k8s.io/component-base/featuregate/testing package should make use of this.
    	// Tests that need to modify feature gates for the duration of their test should use:
    	//   featuregatetesting.SetFeatureGateDuringTest(t, utilfeature.DefaultFeatureGate, features.<FeatureName>, <value>)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  5. src/html/template/html.go

    	'"':  "&#34;",
    	'&':  "&amp;",
    	'\'': "&#39;",
    	'+':  "&#43;",
    	'<':  "&lt;",
    	'=':  "&#61;",
    	'>':  "&gt;",
    	// A parse error in the attribute value (unquoted) and
    	// before attribute value states.
    	// Treated as a quoting character by IE.
    	'`': "&#96;",
    }
    
    // htmlNospaceNormReplacementTable is like htmlNospaceReplacementTable but
    // without '&' to avoid over-encoding existing entities.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 02 19:42:28 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/resources/ResourceLockCoordinationService.java

         */
        @Nullable
        ResourceLockState getCurrent();
    
        /**
         * Attempts to atomically change the state of resource locks.  Only one thread can alter the resource lock
         * states at one time.  Other threads will block until the resource lock state is free.  The provided
         * {@link InternalTransformer} should return a {@link org.gradle.internal.resources.ResourceLockState.Disposition}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 06:02:18 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. pkg/kubelet/pluginmanager/metrics/metrics_test.go

    	metricCollector := &totalPluginsCollector{asw: asw, dsw: dsw}
    
    	// Check if getPluginCount returns correct data
    	count := metricCollector.getPluginCount()
    	if len(count) != 2 {
    		t.Errorf("getPluginCount failed. Expected <2> states, got <%d>", len(count))
    	}
    
    	dswCount, ok := count["desired_state_of_world"]
    	if !ok {
    		t.Errorf("getPluginCount failed. Expected <desired_state_of_world>, got nothing")
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 12 12:48:20 UTC 2019
    - 2.2K bytes
    - Viewed (0)
  8. guava/src/com/google/common/util/concurrent/DirectExecutorService.java

      private final Object lock = new Object();
    
      /*
       * Conceptually, these two variables describe the executor being in
       * one of three states:
       *   - Active: shutdown == false
       *   - Shutdown: runningTasks > 0 and shutdown == true
       *   - Terminated: runningTasks == 0 and shutdown == true
       */
      @GuardedBy("lock")
      private int runningTasks = 0;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 15 10:40:05 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  9. src/internal/trace/event/event.go

    }
    
    // ArgTypes is a list of valid argument types for use in Args.
    //
    // See the documentation of Args for more details.
    var ArgTypes = [...]string{
    	"seq",     // sequence number
    	"pstatus", // P status
    	"gstatus", // G status
    	"g",       // trace.GoID
    	"m",       // trace.ThreadID
    	"p",       // trace.ProcID
    	"string",  // string ID
    	"stack",   // stack ID
    	"value",   // uint64
    	"task",    // trace.TaskID
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/utils/export_utils.h

    // result of such an operation transformed by the
    // ExecutorToControlDialectConversion pass.
    //
    // TODO(b/145706023): When the ExecutorToControlDialectConversion pass runs
    // before the exporter, it mutates an mlir::TF::LegacyCallOp instruction to
    // an instruction with a different operation name. As such, this routine checks
    // both forms of a LegacyCall instruction. We only need to check for
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 26 09:37:10 UTC 2024
    - 3.9K bytes
    - Viewed (0)
Back to top