Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 585 for respective (0.17 sec)

  1. platforms/documentation/docs/src/docs/userguide/jvm/building_java_projects.adoc

    include::sample[dir="snippets/java/customDirs/groovy",files="build.gradle[tags=custom-src-dirs]"]
    ====
    
    Now Gradle will only search directly in _src_ and _test_ for the respective source code. What if you don't want to override the convention, but simply want to _add_ an extra source directory, perhaps one that contains some third-party source code you want to keep separate? The syntax is similar:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.1K bytes
    - Viewed (0)
  2. src/os/exec/exec.go

    // error is of type [*ExitError]. Other error types may be
    // returned for I/O problems.
    //
    // If any of c.Stdin, c.Stdout or c.Stderr are not an [*os.File], Wait also waits
    // for the respective I/O loop copying to or from the process to complete.
    //
    // Wait releases any resources associated with the [Cmd].
    func (c *Cmd) Wait() error {
    	if c.Process == nil {
    		return errors.New("exec: not started")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  3. src/runtime/runtime2.go

    	// 3. By debugCallWrap to pass parameters to a new goroutine because allocating a
    	//    closure in the runtime is forbidden.
    	// 4. When a panic is recovered and control returns to the respective frame,
    	//    param may point to a savedOpenDeferState.
    	param        unsafe.Pointer
    	atomicstatus atomic.Uint32
    	stackLock    uint32 // sigprof/scang lock; TODO: fold in to atomicstatus
    	goid         uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/filesystem/filesystem_interface.h

      /// current/default values in `options` and number of options in array in
      /// `num_options`. Ownership of the array is transferred to caller and the
      /// caller is responsible of freeing the buffers using respective file systems
      /// allocation API.
      ///
      /// Plugins:
      ///   * Must set `status` to `TF_OK` if `options` and `num_options` set.
      ///     If there is no configurable option, `num_options` should be 0.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 17:36:54 UTC 2022
    - 53.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/rangefunc/rewrite.go

    	declStmt      *syntax.DeclStmt
    	nextVar       types2.Object
    	retVars       []types2.Object
    	defers        types2.Object
    	stateVarCount int // stateVars are referenced from their respective loops
    
    	rangefuncBodyClosures map[*syntax.FuncLit]bool
    }
    
    // A branch is a single labeled branch.
    type branch struct {
    	tok   syntax.Token
    	label string
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  6. src/runtime/panic.go

    // out of bounds slice expressions, division by zero, and shift by negative.
    // The panicdivide (again), panicoverflow, panicfloat, and panicmem
    // functions are called by the signal handler when a signal occurs
    // indicating the respective problem.
    //
    // Since panic{Index,Slice,shift} are never called directly, and
    // since the runtime package should never have an out of bounds slice
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  7. src/net/netip/netip.go

    		return a4
    	}
    	if ip.z == z0 {
    		panic("As4 called on IP zero value")
    	}
    	panic("As4 called on IPv6 address")
    }
    
    // AsSlice returns an IPv4 or IPv6 address in its respective 4-byte or 16-byte representation.
    func (ip Addr) AsSlice() []byte {
    	switch ip.z {
    	case z0:
    		return nil
    	case z4:
    		var ret [4]byte
    		byteorder.BePutUint32(ret[:], uint32(ip.addr.lo))
    		return ret[:]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  8. src/go/printer/testdata/parser.go

    		if ident.Name != "_" {
    			obj := ast.NewObj(ast.Var, ident.Name)
    			// short var declarations cannot have redeclaration errors
    			// and are not global => no need to remember the respective
    			// declaration
    			alt := p.topScope.Insert(obj)
    			if alt == nil {
    				n++ // new declaration
    				alt = obj
    			}
    			ident.Obj = alt
    		}
    	}
    	if n == 0 && p.mode&DeclarationErrors != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
  9. src/runtime/mprof.go

    	profBlockLock mutex
    	// profMemActiveLock protects the active field of every memRecord struct
    	profMemActiveLock mutex
    	// profMemFutureLock is a set of locks that protect the respective elements
    	// of the future array of every memRecord struct
    	profMemFutureLock [len(memRecord{}.future)]mutex
    )
    
    // All memory allocations are local and do not escape outside of the profiler.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  10. operator/pkg/apis/istio/v1alpha1/values_types.proto

    }
    
    // MultiClusterConfig specifies the Configuration for Istio mesh across multiple clusters through the istio gateways.
    message MultiClusterConfig {
      // Enables the connection between two kubernetes clusters via their respective ingressgateway services.
      // Use if the pods in each cluster cannot directly talk to one another.
      google.protobuf.BoolValue enabled = 1;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
Back to top