Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,351 for routine (0.12 sec)

  1. src/net/tcpsock_posix.go

    	// calls are sometimes legally erroneous with a "socket not connected".
    	// Since this code (selfConnect) is already trying to work around
    	// a problem, we make sure if this happens we recognize trouble and
    	// ask the DialTCP routine to try again.
    	// TODO: try to understand what's really going on.
    	if fd.laddr == nil || fd.raddr == nil {
    		return true
    	}
    	l := fd.laddr.(*TCPAddr)
    	r := fd.raddr.(*TCPAddr)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:54:32 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  2. pkg/controller/garbagecollector/graph.go

    // use the respective locks, so the return values of the getters can be
    // inconsistent.
    type node struct {
    	identity objectReference
    	// dependents will be read by the orphan() routine, we need to protect it with a lock.
    	dependentsLock sync.RWMutex
    	// dependents are the nodes that have node.identity as a
    	// metadata.ownerReference.
    	dependents map[*node]struct{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 13:37:56 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  3. src/fmt/doc.go

    All errors begin with the string "%!" followed sometimes
    by a single character (the verb) and end with a parenthesized
    description.
    
    If an Error or String method triggers a panic when called by a
    print routine, the fmt package reformats the error message
    from the panic, decorating it with an indication that it came
    through the fmt package.  For example, if a String method
    calls panic("bad"), the resulting formatted message will look
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/classpath/intercept/DefaultCallSiteDecorator.java

        // dynamic dispatch has to happen somewhere. Wrapping the dispatch logic into the CallInterceptor allows
        // to reuse the common MethodHandle decoration routine in maybeDecorateIndyCallSite instead of using a
        // dedicated MethodHandle decorator method just for constructors.
        private final CallInterceptor dispatchingConstructorInterceptor = new AbstractCallInterceptor() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:46:35 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/aot/compile.cc

    // to allow a Python debugger to insert source information about the graph node.
    // For example, a Python add expression may be represented as
    // {{node, x_y_sum}} = Add(x, y) in the error message. See routine interpolate
    // in tensorflow/python/framework/error_interpolation.py for more detail.
    static std::string InterpolateErrorMessage(std::string message) {
      // See _NAME_REGEX in tensorflow/python/framework/error_interpolation.py
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 08:28:57 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/utils/convert_tensor_test.cc

      return mlir::cast<mlir::DenseElementsAttr>(attr).isSplat();
    }
    
    TEST(ConvertTensorProtoTest, SplatTensor) {
      // We construct a sparse TensorProto representing 2^35 float elements, all of
      // them 42. Our conversion routine should not materialize these elements when
      // creating the Attribute. If it tries to, we'll crash OOM here.
      TensorProto tensor;
      tensor.set_dtype(DT_FLOAT);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  7. src/math/big/intconv.go

    	}
    	return byte(ch), err
    }
    
    func (r byteReader) UnreadByte() error {
    	return r.UnreadRune()
    }
    
    var _ fmt.Scanner = intOne // *Int must implement fmt.Scanner
    
    // Scan is a support routine for [fmt.Scanner]; it sets z to the value of
    // the scanned number. It accepts the formats 'b' (binary), 'o' (octal),
    // 'd' (decimal), 'x' (lowercase hexadecimal), and 'X' (uppercase hexadecimal).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  8. src/runtime/asm_mipsx.s

    	ADDU	$-8, R29	// make room for 1 arg and fake LR
    	MOVW	R1, 4(R29)
    	MOVW	R0, 0(R29)
    	JAL	(R4)
    	JMP	runtime·badmcall2(SB)
    
    // systemstack_switch is a dummy routine that systemstack leaves at the bottom
    // of the G stack.  We need to distinguish the routine that
    // lives at the bottom of the G stack from the one that lives
    // at the top of the system stack because the one at the top of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 11:46:29 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  9. src/runtime/os2_aix.go

    	return p[0], p[1], int32(err)
    }
    
    // mmap calls the mmap system call.
    // We only pass the lower 32 bits of file offset to the
    // assembly routine; the higher bits (if required), should be provided
    // by the assembly routine as 0.
    // The err result is an OS error code such as ENOMEM.
    //
    //go:nosplit
    func mmap(addr unsafe.Pointer, n uintptr, prot, flags, fd int32, off uint32) (unsafe.Pointer, int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  10. pkg/envoy/agent.go

    		activeConnections += int(val)
    	}
    	if activeConnections > 0 {
    		log.Debugf("Active connections stats: %s", stats.String())
    	}
    	return activeConnections, nil
    }
    
    // runWait runs the start-up command as a go routine and waits for it to finish
    func (a *Agent) runWait(abortCh <-chan error) {
    	err := a.proxy.Run(abortCh)
    	a.proxy.Cleanup()
    	a.statusCh <- exitStatus{err: err}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 24 16:04:22 UTC 2024
    - 9K bytes
    - Viewed (0)
Back to top