Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 343 for December (0.2 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-message.h

    namespace testing {
    
    // The Message class works like an ostream repeater.
    //
    // Typical usage:
    //
    //   1. You stream a bunch of values to a Message object.
    //      It will remember the text in a stringstream.
    //   2. Then you stream the Message object to an ostream.
    //      This causes the text in the Message to be streamed
    //      to the ostream.
    //
    // For example;
    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9K bytes
    - Viewed (0)
  2. pkg/scheduler/apis/config/validation/validation.go

    	}
    	return nil
    }
    
    type invalidPlugins struct {
    	schemeGroupVersion string
    	plugins            []string
    }
    
    // invalidPluginsByVersion maintains a list of removed/deprecated plugins in each version.
    // Remember to add an entry to that list when creating a new component config
    // version (even if the list of invalid plugins is empty).
    var invalidPluginsByVersion = []invalidPlugins{
    	{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 06:27:01 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/internal/connection/RealRoutePlanner.kt

            connectionUser = connectionUser,
            routes = routes,
            requireMultiplexed = planToReplace != null && planToReplace.isReady,
          ) ?: return null
    
        // If we coalesced our connection, remember the replaced connection's route. That way if the
        // coalesced connection later fails we don't waste a valid route.
        if (planToReplace != null) {
          nextRouteToTry = planToReplace.route
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 12K bytes
    - Viewed (1)
  4. src/cmd/compile/internal/syntax/branches.go

    		varPos = pos
    		varName = name
    		// Any existing forward goto jumping over the variable
    		// declaration is invalid. The goto may still jump out
    		// of the block and be ok, but we don't know that yet.
    		// Remember all forward gotos as potential bad gotos.
    		badGotos = append(badGotos[:0], fwdGotos...)
    	}
    
    	jumpsOverVarDecl := func(fwd *BranchStmt) bool {
    		if varPos.IsKnown() {
    			for _, bad := range badGotos {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Jun 26 00:21:29 UTC 2022
    - 9.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/quota/v1/generic/evaluator.go

    	cache := &atomic.Bool{}
    	cache.Store(false)
    	return func() bool {
    		if cache.Load() {
    			// short-circuit if already synced
    			return true
    		}
    		if hasSynced() {
    			// remember we synced
    			cache.Store(true)
    			return true
    		}
    		return false
    	}
    }
    
    // protectedLister returns notReadyError if hasSynced returns false, otherwise delegates to delegate
    type protectedLister struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 05 00:02:47 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  6. docs/en/docs/tutorial/request-files.md

        ```Python hl_lines="7"
        {!> ../../../docs_src/request_files/tutorial001.py!}
        ```
    
    !!! info
        `File` is a class that inherits directly from `Form`.
    
        But remember that when you import `Query`, `Path`, `File` and others from `fastapi`, those are actually functions that return special classes.
    
    !!! tip
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Mar 13 19:02:19 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/main/java/org/gradle/api/tasks/javadoc/Javadoc.java

    import java.util.ArrayList;
    import java.util.List;
    
    import static org.gradle.util.internal.GUtil.isTrue;
    
    /**
     * <p>Generates HTML API documentation for Java classes.</p>
     * <p>
     * If you create your own Javadoc tasks remember to specify the 'source' property!
     * Without source the Javadoc task will not create any documentation. Example:
     * <pre class='autoTested'>
     * plugins {
     *     id 'java'
     * }
     *
     * task myJavadocs(type: Javadoc) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  8. RELEASE.md

    ## Known Bugs
    
    *   Using XLA:GPU with CUDA 9 and CUDA 9.1 results in garbage results and/or
        `CUDA_ILLEGAL_ADDRESS` failures.
    
        Google discovered in mid-December 2017 that the PTX-to-SASS compiler in CUDA
        9 and CUDA 9.1 sometimes does not properly compute the carry bit when
        decomposing 64-bit address calculations with large offsets (e.g. `load [x +
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  9. src/archive/tar/strconv.go

    	if nsecs == 0 {
    		return strconv.FormatInt(secs, 10)
    	}
    
    	// If seconds is negative, then perform correction.
    	sign := ""
    	if secs < 0 {
    		sign = "-"             // Remember sign
    		secs = -(secs + 1)     // Add a second to secs
    		nsecs = -(nsecs - 1e9) // Take that second away from nsecs
    	}
    	return strings.TrimRight(fmt.Sprintf("%s%d.%09d", sign, secs, nsecs), "0")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 01 14:28:42 UTC 2023
    - 9K bytes
    - Viewed (0)
  10. src/main/webapp/js/admin/adminlte.min.js.map

    } else if (resize == true) {\n          if ($(Selector.BODY).hasClass(ClassName.OPEN)) {\n            $(Selector.BODY).removeClass(ClassName.OPEN)\n          }\n        }\n      }\n    }\n\n    remember() {\n      if(this._options.enableRemember) {\n        let toggleState = localStorage.getItem(`remember${EVENT_KEY}`)\n        if (toggleState == ClassName.COLLAPSED){\n          if (this._options.noTransitionAfterReload) {\n              $(\"body\").addClass('hold-transition').addClass(ClassName...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Wed Feb 12 07:55:41 UTC 2020
    - 77K bytes
    - Viewed (0)
Back to top