Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 156 for returns_ (0.17 sec)

  1. src/crypto/tls/conn.go

    func (hc *halfConn) explicitNonceLen() int {
    	if hc.cipher == nil {
    		return 0
    	}
    
    	switch c := hc.cipher.(type) {
    	case cipher.Stream:
    		return 0
    	case aead:
    		return c.explicitNonceLen()
    	case cbcMode:
    		// TLS 1.1 introduced a per-record explicit IV to fix the BEAST attack.
    		if hc.version >= VersionTLS11 {
    			return c.BlockSize()
    		}
    		return 0
    	default:
    		panic("unknown cipher type")
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

        }
        if (auto block_arg = parent.dyn_cast<mlir::BlockArgument>()) {
          return block_arg.getArgNumber();
        }
        // Returns -1 if we don't find which this result maps to.
        return -1;
      };
    
      llvm::SmallVector<Value, 4> returns;
      for (auto res : func.getBody().back().getTerminator()->getOperands()) {
        returns.push_back(res);
      }
      llvm::DenseMap<int, int> result;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbFile.java

                return true;
            }
            return exists() && ( this.attributes & ATTR_READONLY ) == 0;
        }
    
    
        @Override
        public boolean isDirectory () throws SmbException {
            if ( this.fileLocator.isRootOrShare() ) {
                return true;
            }
            if ( !exists() )
                return false;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  4. src/cmd/link/internal/loader/loader.go

    // Returns whether the i-th symbol is nosplit.
    func (l *Loader) IsNoSplit(i Sym) bool {
    	return l.SymAttr(i)&goobj.SymFlagNoSplit != 0
    }
    
    // Returns whether this is a Go type symbol.
    func (l *Loader) IsGoType(i Sym) bool {
    	return l.SymAttr(i)&goobj.SymFlagGoType != 0
    }
    
    // Returns whether this symbol should be included in typelink.
    func (l *Loader) IsTypelink(i Sym) bool {
    	return l.SymAttr(i)&goobj.SymFlagTypelink != 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/buildlist.go

    	return mg.g.RequiredBy(m)
    }
    
    // Selected returns the selected version of the module with the given path.
    //
    // If no version is selected, Selected returns version "none".
    func (mg *ModuleGraph) Selected(path string) (version string) {
    	return mg.g.Selected(path)
    }
    
    // WalkBreadthFirst invokes f once, in breadth-first order, for each module
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  6. pkg/scheduler/internal/queue/scheduling_queue.go

    			// We need to check if those plugins return Queue or not and if they do, we return queueImmediately.
    			queueStrategy = queueAfterBackoff
    		}
    	}
    
    	return queueStrategy
    }
    
    // runPreEnqueuePlugins iterates PreEnqueue function in each registered PreEnqueuePlugin.
    // It returns true if all PreEnqueue function run successfully; otherwise returns false
    // upon the first failure.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    	if e != nil {
    		return nil, e
    	}
    	return sid2, nil
    }
    
    // IdentifierAuthority returns the identifier authority of the SID.
    func (sid *SID) IdentifierAuthority() SidIdentifierAuthority {
    	return *getSidIdentifierAuthority(sid)
    }
    
    // SubAuthorityCount returns the number of sub-authorities in the SID.
    func (sid *SID) SubAuthorityCount() uint8 {
    	return *getSidSubAuthorityCount(sid)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  8. src/runtime/traceback.go

    		return 0
    	}
    
    	ctxt := u.g.ptr().cgoCtxt[u.cgoCtxt]
    	u.cgoCtxt--
    	cgoContextPCs(ctxt, pcBuf)
    	for i, pc := range pcBuf {
    		if pc == 0 {
    			return i
    		}
    	}
    	return len(pcBuf)
    }
    
    // tracebackPCs populates pcBuf with the return addresses for each frame from u
    // and returns the number of PCs written to pcBuf. The returned PCs correspond
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  9. src/runtime/mprof.go

    }
    
    // InUseBytes returns the number of bytes in use (AllocBytes - FreeBytes).
    func (r *MemProfileRecord) InUseBytes() int64 { return r.AllocBytes - r.FreeBytes }
    
    // InUseObjects returns the number of objects in use (AllocObjects - FreeObjects).
    func (r *MemProfileRecord) InUseObjects() int64 {
    	return r.AllocObjects - r.FreeObjects
    }
    
    // Stack returns the stack trace associated with the record,
    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. configure.py

      pass
    
    
    def is_windows():
      return platform.system() == 'Windows'
    
    
    def is_linux():
      return platform.system() == 'Linux'
    
    
    def is_macos():
      return platform.system() == 'Darwin'
    
    
    def is_ppc64le():
      return platform.machine() == 'ppc64le'
    
    
    def is_s390x():
      return platform.machine() == 's390x'
    
    
    def is_cygwin():
      return platform.system().startswith('CYGWIN_NT')
    
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (1)
Back to top