Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 76 for excluding (0.16 sec)

  1. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    It is important for users to distinguish between the API and internal parts of the Gradle codebase.
    This is typically achieved by including `internal` in the implementation package names.
    However, before this release, the configuration cache subsystem did not follow this pattern, potentially causing confusion.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  2. src/os/exec/exec.go

    // Operating systems have for decades included the current
    // directory in this search, sometimes implicitly and sometimes
    // configured explicitly that way by default.
    // Modern practice is that including the current directory
    // is usually unexpected and often leads to security problems.
    //
    // To avoid those security problems, as of Go 1.19, this package will not resolve a program
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  3. guava/src/com/google/common/util/concurrent/AbstractFuture.java

        // the listener.
        executeListener(listener, executor);
      }
    
      /**
       * Sets the result of this {@code Future} unless this {@code Future} has already been cancelled or
       * set (including {@linkplain #setFuture set asynchronously}). When a call to this method returns,
       * the {@code Future} is guaranteed to be {@linkplain #isDone done} <b>only if</b> the call was
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  4. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

        // the listener.
        executeListener(listener, executor);
      }
    
      /**
       * Sets the result of this {@code Future} unless this {@code Future} has already been cancelled or
       * set (including {@linkplain #setFuture set asynchronously}). When a call to this method returns,
       * the {@code Future} is guaranteed to be {@linkplain #isDone done} <b>only if</b> the call was
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
  5. chainable_api.go

    // Unscoped allows queries to include records marked as deleted,
    // overriding the soft deletion behavior.
    // Example:
    //    var users []User
    //    db.Unscoped().Find(&users)
    //    // Retrieves all users, including deleted ones.
    func (db *DB) Unscoped() (tx *DB) {
    	tx = db.getInstance()
    	tx.Statement.Unscoped = true
    	return
    }
    
    func (db *DB) Raw(sql string, values ...interface{}) (tx *DB) {
    	tx = db.getInstance()
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 09:47:34 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  6. src/sync/map.go

    //
    // Range does not necessarily correspond to any consistent snapshot of the Map's
    // contents: no key will be visited more than once, but if the value for any key
    // is stored or deleted concurrently (including by f), Range may reflect any
    // mapping for that key from any point during the Range call. Range does not
    // block other methods on the receiver; even f itself may call any method on m.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  7. pilot/pkg/bootstrap/istio_ca.go

    // able to load cacerts from a remote cluster instead.
    // TODO(costin): remove this method, it is not watching the files and the functionality is now available
    // in the normal CA code (including support for the new style keys)
    func (s *Server) loadCACerts(caOpts *caOptions, dir string) error {
    	if s.kubeClient == nil {
    		return nil
    	}
    
    	signingKeyFile := path.Join(dir, ca.CAPrivateKeyFile)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  8. docs/en/data/external_links.yml

    title: A FastAPI and Swagger UI visual cheatsheet - author: Uber Engineering author_link: https://eng.uber.com link: https://eng.uber.com/ludwig-v0-2/ title: 'Uber: Ludwig v0.2 Adds New Features and Other Improvements to its Deep Learning Toolbox [including a FastAPI server]' - author: Maarten Grootendorst author_link: https://www.linkedin.com/in/mgrootendorst/ link: https://towardsdatascience.com/how-to-deploy-a-machine-learning-model-dc51200fe8cf title: How to Deploy a Machine Learning Model - author:...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Jun 12 00:47:57 UTC 2024
    - 22K bytes
    - Viewed (0)
  9. src/net/http/server.go

    const bufferBeforeChunkingSize = 2048
    
    // chunkWriter writes to a response's conn buffer, and is the writer
    // wrapped by the response.w buffered writer.
    //
    // chunkWriter also is responsible for finalizing the Header, including
    // conditionally setting the Content-Type and setting a Content-Length
    // in cases where the handler's final output is smaller than the buffer
    // size. It also conditionally adds chunk headers, when in chunking mode.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/cluster.go

    	for k := range cfgs {
    		if !deltaConfigTypes.Contains(k.Kind.String()) {
    			return false
    		}
    	}
    	return true
    }
    
    // buildOutboundClusters generates all outbound (including subsets) clusters for a given proxy.
    func (configgen *ConfigGeneratorImpl) buildOutboundClusters(cb *ClusterBuilder, proxy *model.Proxy, cp clusterPatcher,
    	services []*model.Service,
    ) ([]*discovery.Resource, cacheStats) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
Back to top