Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 119 for relu (0.09 sec)

  1. pkg/config/model.go

    	// The implementation may use a change index or a commit log for the revision.
    	// The config client should not make any assumptions about revisions and rely only on
    	// exact equality to implement optimistic concurrency of read-write operations.
    	//
    	// The lifetime of an object of a particular revision depends on the underlying data store.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_maven.adoc

    * Shade/Shadow
    * Jetty
    * Checkstyle
    * JaCoCo
    * AntRun (see further down)
    
    Why does this matter? Because many plugins rely on standard Java conventions, migration is just a matter of replicating the configuration of the Maven plugin in Gradle.
    As an example, here's a simple Maven Checkstyle plugin configuration:
    
    [source,xml]
    ----
    ...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  3. src/archive/tar/reader.go

    			// Thus, setup the regFileReader again after merging PAX headers.
    			if err := tr.handleRegularFile(hdr); err != nil {
    				return nil, err
    			}
    
    			// Sparse formats rely on being able to read from the logical data
    			// section; there must be a preceding call to handleRegularFile.
    			if err := tr.handleSparseFile(hdr, rawHdr); err != nil {
    				return nil, err
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 01:59:14 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/phases/addons/dns/dns.go

    	}
    
    	corefileMigrationRequired, err := isCoreDNSConfigMapMigrationRequired(corefile, currentInstalledCoreDNSVersion)
    	if err != nil {
    		return err
    	}
    
    	// Assume that migration is always possible, rely on migrateCoreDNSCorefile() to fail if not.
    	canMigrateCorefile := true
    
    	if corefile == "" || migration.Default("", corefile) {
    		// If the Corefile is empty or default, the latest default Corefile will be applied
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/text/internal/language/lookup.go

    		const (
    			searchBits = 7
    			regionBits = 9
    			regionMask = 1<<regionBits - 1
    		)
    		idx := n >> searchBits
    		buf := fromM49[m49Index[idx]:m49Index[idx+1]]
    		val := uint16(n) << regionBits // we rely on bits shifting out
    		i := sort.Search(len(buf), func(i int) bool {
    			return buf[i] >= val
    		})
    		if r := fromM49[int(m49Index[idx])+i]; r&^regionMask == val {
    			return Region(r & regionMask), nil
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  6. tests/integration/telemetry/api/stats_test.go

    	ns := apps.Namespace
    	labels := map[string]string{
    		"request_protocol": "http",
    		"response_code":    "200",
    		// For out of mesh server, client side metrics rely on endpoint resource metadata
    		// to fill in workload labels. To limit size of endpoint resource, we only populate
    		// workload name and namespace, canonical service name and version in endpoint metadata.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/declaring_dependencies.adoc

    In Gradle and Ivy, a module can have multiple artifacts.
    Each artifact can have a different set of dependencies.
    ====
    
    [[sub:file_dependencies]]
    === File dependencies
    
    Projects sometimes do not rely on a binary repository product e.g. JFrog Artifactory or Sonatype Nexus for hosting and resolving external dependencies.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 30.1K bytes
    - Viewed (0)
  8. internal/bucket/object/lock/lock.go

    )
    
    const (
    	ntpServerEnv = "MINIO_NTP_SERVER"
    )
    
    var ntpServer = env.Get(ntpServerEnv, "")
    
    // UTCNowNTP - is similar in functionality to UTCNow()
    // but only used when we do not wish to rely on system
    // time.
    func UTCNowNTP() (time.Time, error) {
    	// ntp server is disabled
    	if ntpServer == "" {
    		return time.Now().UTC(), nil
    	}
    	return ntp.Time(ntpServer)
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  9. docs/en/docs/tutorial/dependencies/dependencies-with-yield.md

        So, this way you will probably have cleaner code.
    
    If you used to rely on this behavior, now you should create the resources for background tasks inside the background task itself, and use internally only data that doesn't depend on the resources of dependencies with `yield`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Feb 24 23:06:37 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/xla_cluster_util.cc

      return false;
    }
    
    absl::StatusOr<bool> CreateCycleDetectionGraph(const Graph* graph,
                                                   GraphCycles* cycles) {
      for (int i = 0; i < graph->num_node_ids(); ++i) {
        // We rely on the node IDs in the cycle detection graph being consecutive
        // integers starting from 0.
        CHECK_EQ(i, cycles->NewNode());
      }
    
      // Compute the loop structure of the graph.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 29 08:39:39 UTC 2024
    - 21.3K bytes
    - Viewed (0)
Back to top