Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,341 for lets (0.25 sec)

  1. src/net/http/responsecontroller.go

    			return t.FlushError()
    		case Flusher:
    			t.Flush()
    			return nil
    		case rwUnwrapper:
    			rw = t.Unwrap()
    		default:
    			return errNotSupported()
    		}
    	}
    }
    
    // Hijack lets the caller take over the connection.
    // See the Hijacker interface for details.
    func (c *ResponseController) Hijack() (net.Conn, *bufio.ReadWriter, error) {
    	rw := c.rw
    	for {
    		switch t := rw.(type) {
    		case Hijacker:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part5_gradle_inc_builds.adoc

    > Task :app:check UP-TO-DATE
    > Task :app:build UP-TO-DATE
    
    BUILD SUCCESSFUL in 409ms
    7 actionable tasks: 7 up-to-date
    ----
    
    Most tasks now have the `UP-TO-DATE` label.
    This is how Gradle lets us know that inputs and outputs have not changed and therefore some tasks did not re-run.
    
    == Step 4. Understanding Outcome Labels
    There are four labels that developers can use to view task outcomes when verbose mode is turned on:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. pkg/config/labels/instance.go

    // be differentiated by a unique set of labels associated with the version. These
    // labels are assigned to all instances of a particular service version. For
    // example, lets say catalog.mystore.com has 2 versions v1 and v2. v1 instances
    // could have labels gitCommit=aeiou234, region=us-east, while v2 instances could
    // have labels name=kittyCat,region=us-east.
    type Instance map[string]string
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 16 06:54:36 UTC 2023
    - 5K bytes
    - Viewed (0)
  4. docs/batch-jobs/README.md

    # MinIO Batch Job
    MinIO Batch jobs is an MinIO object management feature that lets you manage objects at scale. Jobs currently supported by MinIO
    
    - Replicate objects between buckets on multiple sites
    
    Upcoming Jobs
    
    - Copy objects from NAS to MinIO
    - Copy objects from HDFS to MinIO
    
    ## Replication Job
    To perform replication via batch jobs, you create a job. The job consists of a job description YAML that describes
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Oct 06 06:00:43 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  5. docs/distributed/CONFIG.md

    ### Usage
    
    ```
    minio server --config config.yaml
    ```
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 03 15:54:03 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  6. docs/sts/casdoor.md

        SignerType: 1
      }
    }
    ```
    
    ### Using MinIO Console
    
    - Open MinIO URL on the browser, lets say <http://localhost:9000/>
    - Click on `Login with SSO`
    - User will be redirected to the Casdoor user login page, upon successful login the user will be redirected to MinIO page and logged in automatically,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 6.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/apis/meta/internalversion/types.go

    	// not support this field on all resource types, but if it does and more results remain it
    	// will set the continue field on the returned list object.
    	Limit int64
    	// Continue is a token returned by the server that lets a client retrieve chunks of results
    	// from the server by specifying limit. The server may reject requests for continuation tokens
    	// it does not recognize and will return a 410 error if the token can no longer be used because
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 01 09:55:40 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/resource_access.go

    	lister corev1listers.ResourceQuotaLister
    
    	// liveLookups holds the last few live lookups we've done to help ammortize cost on repeated lookup failures.
    	// This lets us handle the case of latent caches, by looking up actual results for a namespace on cache miss/no results.
    	// We track the lookup result here so that for repeated requests, we don't look it up very often.
    	liveLookupCache *lru.Cache
    	group           singleflight.Group
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 10 13:54:56 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  9. tensorflow/cc/client/client_session.h

    struct ThreadPoolOptions;
    }
    }  // namespace tsl
    
    namespace tensorflow {
    
    namespace thread {
    using tsl::thread::ThreadPoolOptions;
    }
    
    /// @addtogroup core
    /// @{
    
    /// A `ClientSession` object lets the caller drive the evaluation of the
    /// TensorFlow graph constructed with the C++ API.
    ///
    /// Example:
    ///
    ///     Scope root = Scope::NewRootScope();
    ///     auto a = Placeholder(root, DT_INT32);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 20 08:11:46 UTC 2022
    - 6.1K bytes
    - Viewed (0)
  10. src/cmd/go/internal/cache/prog.go

    	// writes to stdout on startup (with ID==0). It includes the
    	// ProgRequest.Command types that are supported by the program.
    	//
    	// This lets us extend the protocol gracefully over time (adding "get2",
    	// etc), or fail gracefully when needed. It also lets us verify the program
    	// wants to be a cache helper.
    	KnownCommands []ProgCmd `json:",omitempty"`
    
    	// For Get requests.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 19:23:25 UTC 2023
    - 11.8K bytes
    - Viewed (0)
Back to top