Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 263 for Function1 (0.15 sec)

  1. src/net/http/request.go

    			err = e
    		}
    	case ct == "multipart/form-data":
    		// handled by ParseMultipartForm (which is calling us, or should be)
    		// TODO(bradfitz): there are too many possible
    		// orders to call too many functions here.
    		// Clean this up and write more tests.
    		// request_test.go contains the start of this,
    		// in TestParseMultipartFormOrder and others.
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

                buildList {
                    // Collect constructors
                    findAvailableConstructors(scope, name).mapTo(this) { AvailableSymbol(it, importKind) }
    
                    // Collect functions
                    scope.getFunctions(name).mapTo(this) { AvailableSymbol(it, importKind) }
                }
            }
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    	Label SIDAndAttributes
    }
    
    func (tml *Tokenmandatorylabel) Size() uint32 {
    	return uint32(unsafe.Sizeof(Tokenmandatorylabel{})) + GetLengthSid(tml.Label.Sid)
    }
    
    // Authorization Functions
    //sys	checkTokenMembership(tokenHandle Token, sidToCheck *SID, isMember *int32) (err error) = advapi32.CheckTokenMembership
    //sys	isTokenRestricted(tokenHandle Token) (ret bool, err error) [!failretval] = advapi32.IsTokenRestricted
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

    // "A Precision Approximation of the Gamma Function". SIAM Journal on Numerical
    // Analysis series B. Vol. 1:
    // lgamma(z + 1) = (log(2) + log(pi)) / 2 + (z + 1/2) * log(t(z)) - t(z) + A(z)
    // t(z) = z + kLanczosGamma + 1/2
    // A(z) = kBaseLanczosCoeff
    //       + sigma(k = 1, n, kLanczosCoefficients[i] / (z +  k))
    //
    // Coefficients for the Lanczos approximation of the gamma function. The
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  5. src/net/http/transport.go

    	connsPerHost     map[connectMethodKey]int
    	connsPerHostWait map[connectMethodKey]wantConnQueue // waiting getConns
    	dialsInProgress  wantConnQueue
    
    	// Proxy specifies a function to return a proxy for a given
    	// Request. If the function returns a non-nil error, the
    	// request is aborted with the provided error.
    	//
    	// The proxy type is determined by the URL scheme. "http",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  6. src/index/suffixarray/sais2.go

    		freq[0] = -1 // mark as uninitialized
    	} else {
    		freq, bucket = nil, tmp[:textMax]
    	}
    
    	// The SAIS algorithm.
    	// Each of these calls makes one scan through sa.
    	// See the individual functions for documentation
    	// about each's role in the algorithm.
    	numLMS := placeLMS_8_64(text, sa, freq, bucket)
    	if numLMS <= 1 {
    		// 0 or 1 items are already sorted. Do nothing.
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  7. src/runtime/mgcscavenge.go

    	// Instead, it is called when non-nil because any valid implementation
    	// of this function basically requires closing over this scavenger
    	// state, and allocating a closure is not allowed in the runtime as
    	// a matter of policy.
    	sleepStub func(n int64) int64
    
    	// scavenge is a function that scavenges n bytes of memory.
    	// Returns how many bytes of memory it actually scavenged, as
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  8. tensorflow/BUILD

    # linking against the C and C++ APIs (such as libjpeg).  When we create
    # the shared library, only export the core TF API functions to avoid
    # causing library conflicts (e.g., those reported in github issue 1924).
    # On Linux, tell the linker (-Wl,<option>) to use a version script that
    # excludes all but a subset of function names.
    # On MacOS, the linker does not support version_script, but has an
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  9. src/go/printer/nodes.go

    //   when the comment spans multiple lines; if such a comment is just two lines, formatting is
    //   not idempotent
    // - formatting of expression lists
    // - should use blank instead of tab to separate one-line function bodies from
    //   the function header unless there is a group of consecutive one-liners
    
    // ----------------------------------------------------------------------------
    // Common AST nodes.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/util/concurrent/AbstractClosingFutureTest.java

                          }
                        }),
                    executor);
        waiter.awaitStarted();
        cancelFinalStepAndWait(closingFuture);
        // not closed until the function returns
        assertStillOpen(closeable1, closeable2, closeable3);
        waiter.awaitReturned();
        assertClosed(closeable1, closeable2, closeable3);
      }
    
      public void testTransformAsync_throws() throws Exception {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 75.3K bytes
    - Viewed (0)
Back to top