Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 800 for states (0.15 sec)

  1. src/runtime/coro.go

    	//
    	// The rules with thread-lock interactions are simple. When a coro goroutine is switched to,
    	// the same thread must be used, and the locked state must match with the thread-lock state of
    	// the goroutine which called newcoro. Thread-lock state consists of the thread and the number
    	// of internal (cgo callback, etc.) and external (LockOSThread) thread locks.
    	locked := gp.lockedm != 0
    	if c.mp != nil || locked {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:09:18 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewrite.go

    			// Start checking for cycles. (This is too expensive to do routinely.)
    			// Note: we avoid this path for deadChange-only iterations, to fix #51639.
    			if states == nil {
    				states = make(map[string]bool)
    			}
    			h := f.rewriteHash()
    			if _, ok := states[h]; ok {
    				// We've found a cycle.
    				// To diagnose it, set debug to 2 and start again,
    				// so that we'll print all rules applied until we complete another cycle.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  3. 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)
  4. src/cmd/vendor/github.com/google/pprof/profile/legacy_java_profile.go

    		} else if strings.Contains(jloc[2], "generated stub/JIT") {
    			lineFunc = "STUB"
    		} else {
    			// Treat whole line as the function name. This is used by the
    			// java agent for internal states such as "GC" or "VM".
    			lineFunc = jloc[2]
    		}
    		fn := fns[lineFunc]
    
    		if fn == nil {
    			fn = &Function{
    				Name:       lineFunc,
    				SystemName: lineFunc,
    				Filename:   lineFile,
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/jvm/dependency_management_for_java_projects.adoc

    link:{groovyDslPath}/org.gradle.api.Project.html#org.gradle.api.Project:dependencies(groovy.lang.Closure)[Project.dependencies{}] code block declares that Hibernate core 3.6.7.Final is required to compile the project's production source code. It also states that junit &gt;= 4.0 is required to compile the project's tests. All dependencies are supposed to be looked up in the Maven Central repository as defined by link:{groovyDslPath}/org.gradle.api.Project.html#org.gradle.api.Project:repositories(groo...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  6. src/syscall/route_bsd.go

    		} else {
    			copy(sa.Addr[:], b[l-offsetofInet4:l])
    		}
    		return sa, nil
    	}
    }
    
    // RouteRIB returns routing information base, as known as RIB,
    // which consists of network facility information, states and
    // parameters.
    //
    // Deprecated: Use golang.org/x/net/route instead.
    func RouteRIB(facility, param int) ([]byte, error) {
    	mib := []_C_int{CTL_NET, AF_ROUTE, 0, 0, _C_int(facility), _C_int(param)}
    	// Find size.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/translate/tf_mlir_translate.cc

        MLIRImportOptions options) {
      MetaGraphDef meta_graph_def;
      auto status =
          ReadMetaGraphDefFromSavedModel(saved_model_dir, tags, &meta_graph_def);
      if (!status.ok()) {
        LOG(ERROR) << "Failed to load saved model v1 '" << saved_model_dir
                   << "': " << status;
        return status;
      }
    
      std::optional<absl::Span<const std::string>> optional_exported_names;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 11:51:44 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/proxy/transport.go

    	"golang.org/x/net/html"
    	"golang.org/x/net/html/atom"
    	"k8s.io/klog/v2"
    
    	"k8s.io/apimachinery/pkg/api/errors"
    	"k8s.io/apimachinery/pkg/util/net"
    	"k8s.io/apimachinery/pkg/util/sets"
    )
    
    // atomsToAttrs states which attributes of which tags require URL substitution.
    // Sources: http://www.w3.org/TR/REC-html40/index/attributes.html
    //
    //	http://www.w3.org/html/wg/drafts/html/master/index.html#attributes-1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 10 07:29:34 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/ImmutableSortedSet.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package com.google.common.collect;
    
    import static com.google.common.base.Preconditions.checkArgument;
    import static com.google.common.base.Preconditions.checkNotNull;
    import static com.google.common.collect.ObjectArrays.checkElementsNotNull;
    
    import com.google.common.annotations.GwtCompatible;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 08 03:01:02 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/tighten.go

    // Plain -> b2
    //
    // Algorithm introduction:
    //  1. The start memory state of a block is InitMem, a Phi node of type mem or
    //     an incoming memory value.
    //  2. The start memory state of a block is consistent with the end memory state
    //     of its parent nodes. If the start memory state of a block is a Phi value,
    //     then the end memory state of its parent nodes is consistent with the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 16 01:01:38 UTC 2023
    - 7.7K bytes
    - Viewed (0)
Back to top