Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 232 for wbMove (0.32 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/ManagedProxyClassGenerator.java

         *     <li>mix-in implementation of {@link ManagedInstance}</li>
         *     <li>provide a constructor that accepts a {@link ModelElementState}, which will be used to implement the above.</li>
         * </ul>
         *
         * In case a delegate schema is supplied, the generated class will also have:
         * <ul>
         *     <li>a constructor that also takes a delegate instance</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 55.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/mark_for_compilation_pass.cc

            // ApplyWeightUpdates_* nodes into this cluster. To avoid this fate we
            // instead run a pass that avoids contracting edges _into_ NoOps like
            // the above, and avoid clustering edges _from_ "iteration++" like the
            // above.  Then we run a second pass that contracts the edges we could
            // not contract the first time around.
    
            if (IsSinkLike(*to)) {
              return false;
            }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  3. guava/src/com/google/common/cache/CacheBuilder.java

       * configuring a {@code CacheBuilder} and building your {@link Cache} all in a single statement.
       *
       * <p><b>Warning:</b> if you ignore the above advice, and use this {@code CacheBuilder} to build a
       * cache whose key or value type is incompatible with the weigher, you will likely experience a
       * {@link ClassCastException} at some <i>undefined</i> point in the future.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  4. src/cmd/cgo/out.go

    					})
    				fmt.Fprintf(fgcc, "\treturn r;\n")
    			}
    		}
    		fmt.Fprintf(fgcc, "}\n")
    
    		// In internal linking mode, the Go linker sees both
    		// the C wrapper written above and the Go wrapper it
    		// references. Hence, export the C wrapper (e.g., for
    		// if we're building a shared object). The Go linker
    		// will resolve the C wrapper's reference to the Go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  5. src/cmd/dist/build.go

    	if rebuildall {
    		xremoveall(objGoBootstrap)
    	}
    	xmkdirall(objGoBootstrap)
    	xatexit(func() { xremoveall(objGoBootstrap) })
    
    	// Create tool directory.
    	// We keep it in pkg/, just like the object directory above.
    	if rebuildall {
    		xremoveall(tooldir)
    	}
    	xmkdirall(tooldir)
    
    	// Remove tool binaries from before the tool/gohostos_gohostarch
    	xremoveall(pathf("%s/bin/tool", goroot))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    This includes instances of `Callable`, such as closures, allowing for lazy evaluation of the property values.
    Be aware that the types `FileCollection` and `FileTree` are ``Iterable&lt;File&gt;``s.
    
    Similar to the above, `File` can be any type accepted by link:{groovyDslPath}/org.gradle.api.Project.html#org.gradle.api.Project:file(java.lang.Object)[Project.file(java.lang.Object)]. The `Map` itself can be wrapped in ``Callable``s, such as closures.
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  7. pkg/scheduler/internal/cache/cache_test.go

    					v1.ResourceCPU:    resource.MustParse("1000m"),
    					v1.ResourceMemory: resource.MustParse("100m"),
    				},
    			},
    		}
    		nodes = append(nodes, node)
    	}
    	// Create a few nodes as updated versions of the above nodes
    	var updatedNodes []*v1.Node
    	for _, n := range nodes {
    		updatedNode := n.DeepCopy()
    		updatedNode.Status.Allocatable = v1.ResourceList{
    			v1.ResourceCPU:    resource.MustParse("2000m"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 01:38:03 UTC 2023
    - 63.8K bytes
    - Viewed (0)
  8. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

    // modification, are permitted provided that the following conditions are
    // met:
    //
    //     * Redistributions of source code must retain the above copyright
    // notice, this list of conditions and the following disclaimer.
    //     * Redistributions in binary form must reproduce the above
    // copyright notice, this list of conditions and the following disclaimer
    // in the documentation and/or other materials provided with the
    // distribution.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

    // modification, are permitted provided that the following conditions are
    // met:
    //
    //     * Redistributions of source code must retain the above copyright
    // notice, this list of conditions and the following disclaimer.
    //     * Redistributions in binary form must reproduce the above
    // copyright notice, this list of conditions and the following disclaimer
    // in the documentation and/or other materials provided with the
    // distribution.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  10. src/net/http/transport.go

    // (from writeLoop above) happened and was successful.
    func (pc *persistConn) wroteRequest() bool {
    	select {
    	case err := <-pc.writeErrCh:
    		// Common case: the write happened well before the response, so
    		// avoid creating a timer.
    		return err == nil
    	default:
    		// Rare case: the request was written in writeLoop above but
    		// before it could send to pc.writeErrCh, the reader read it
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
Back to top