Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,190 for createId (0.15 sec)

  1. src/internal/trace/testdata/generators/go122-go-create-without-running-g.go

    // the time of writing, one such example is goroutines created by expiring
    // timers.
    
    package main
    
    import (
    	"internal/trace"
    	"internal/trace/event/go122"
    	testgen "internal/trace/internal/testgen/go122"
    )
    
    func main() {
    	testgen.Main(gen)
    }
    
    func gen(t *testgen.Trace) {
    	g1 := t.Generation(1)
    
    	// A goroutine gets created on a running P, then starts running.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 996 bytes
    - Viewed (0)
  2. src/internal/trace/testdata/generators/go122-create-syscall-reuse-thread-id.go

    // license that can be found in the LICENSE file.
    
    // Tests a G being created from within a syscall.
    //
    // Specifically, it tests a scenerio wherein a C
    // thread is calling into Go, creating a goroutine in
    // a syscall (in the tracer's model). The system is free
    // to reuse thread IDs, so first a thread ID is used to
    // call into Go, and then is used for a Go-created thread.
    //
    // This is a regression test. The trace parser didn't correctly
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/passes/insert_save_op.cc

      return builder.create<TF::ConstOp>(
          loc, DenseStringElementsAttr::get(
                   tensor_type,
                   SmallVector<StringRef>(str_values.begin(), str_values.end())));
    }
    
    // Creates a 1D string array constant for "tensor_names" input of `RestoreV2`
    // op. The `ConstOp` will be created at `builder`'s current insertion point.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 05:52:39 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/passes/insert_restore_op.cc

        return;
      }
    
      std::vector<TF::VarHandleOp> target_var_handle_ops =
          CollectVariableOps(session_init_func);
      if (target_var_handle_ops.empty()) {
        LOG(INFO) << "There are no VarHandleOps to restore. RestoreV2 op will not "
                     "be created.";
        return;
      }
    
      CreateRestoreV2Op(target_var_handle_ops, session_init_func);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Mar 12 06:02:20 UTC 2023
    - 9K bytes
    - Viewed (0)
  5. samples/kind-lb/README.md

    when it creates a k8s cluster. This parameter is used as the 3rd octet for the
    public IP v4 addresses when a load balancer is created. The default value is 255.
    The first two octets are determined by the docker network created by `KinD`, the 4th octet
    is hard coded as 200-240. As you might have guessed, for each k8s cluster one can
    create at most 40 public IP v4 addresses.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 02 19:08:19 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  6. src/test/java/jcifs/tests/WatchTest.java

                setupWatch(w);
                try ( SmbResource cr = new SmbFile(this.base, "created") ) {
                    cr.createNewFile();
                    assertNotified(w, FileNotifyInformation.FILE_ACTION_ADDED, "created", null);
                }
    
                try ( SmbResource cr = new SmbFile(this.base, "created2") ) {
                    cr.createNewFile();
                }
    
                setupWatch(w);
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 8.4K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/collections/DomainObjectCollectionFactory.java

        /**
         * Creates a {@link NamedDomainObjectContainer} for managing named objects of the specified type. The given closure is used to create object instances. The name of the instance to be created is passed as a parameter to the closure.
         */
        <T> NamedDomainObjectContainer<T> newNamedDomainObjectContainer(Class<T> type, Closure factoryClosure);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/ConnectCompletion.java

    /**
     * A builder that allows a {@link Connection} to be created once the underlying transport with the peer has been
     * established.
     */
    public interface ConnectCompletion {
        /**
         * Creates the connection. Uses the specified serializer for all messages.
         *
         * @return The serializer to use.
         */
        <T> RemoteConnection<T> create(StatefulSerializer<T> serializer);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  9. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/filesystem/FileSystem.java

        boolean isCaseSensitive();
    
        /**
         * Tells if the file system can create symbolic links. If the answer cannot be determined accurately,
         * <code>false</code> is returned.
         *
         * @return <code>true</code> if the file system can create symbolic links, <code>false</code> otherwise
         */
        boolean canCreateSymbolicLink();
    
        /**
         * Creates a symbolic link to a target file.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  10. tests/fuzz/kube_crd_fuzzer.go

    	"istio.io/istio/pkg/config/schema/collections"
    )
    
    // FuzzKubeCRD implements a fuzzer that targets
    // the kube CRD in two steps.
    // It first creates an object with a config
    // that has had pseudo-random values inserted.
    // When a valid object has been created, it
    // tries and convert that object. If this
    // conversion fails, it panics.
    func FuzzKubeCRD(data []byte) int {
    	f := fuzz.NewConsumer(data)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 02 20:50:14 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top