Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 631 for covers (0.12 sec)

  1. src/compress/gzip/gunzip.go

    			return "", ErrHeader
    		}
    		z.buf[i], err = z.r.ReadByte()
    		if err != nil {
    			return "", err
    		}
    		if z.buf[i] > 0x7f {
    			needConv = true
    		}
    		if z.buf[i] == 0 {
    			// Digest covers the NUL terminator.
    			z.digest = crc32.Update(z.digest, crc32.IEEETable, z.buf[:i+1])
    
    			// Strings are ISO 8859-1, Latin-1 (RFC 1952, section 2.3.1).
    			if needConv {
    				s := make([]rune, 0, i)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 23:20:03 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/reference/ci-systems/teamcity.adoc

    === Install and start TeamCity
    
    On the https://www.jetbrains.com/teamcity/download/[TeamCity website] you can pick from a variety of distributions.
    This post uses TeamCity bundled with Tomcat servlet container and covers the evaluation setup of a TeamCity server and a default build agent running on the same machine.
    
    [start=1]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/KotlinDslVersionCatalogExtensionIntegrationTest.groovy

                    expected.set(listOf("lib-core-1.0.jar", "lib-ext-1.0.jar"))
                }
                // Might be worth checking constraints too? Not sure if necessary because the Groovy DSL version covers that
                // and the selected versions above would be wrong.
            """
    
            expect:
            succeeds ':checkDeps'
        }
    
        private void withCheckDeps() {
            buildKotlinFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 17K bytes
    - Viewed (0)
  4. cmd/postpolicyform.go

    	policyCondContentLength = "content-length-range"
    )
    
    // toString - Safely convert interface to string without causing panic.
    func toString(val interface{}) string {
    	switch v := val.(type) {
    	case string:
    		return v
    	default:
    		return ""
    	}
    }
    
    // toLowerString - safely convert interface to lower string
    func toLowerString(val interface{}) string {
    	return strings.ToLower(toString(val))
    }
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 06 10:52:41 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  5. SECURITY.md

    vulnerabilities to the vendor of the affected hardware accelerator.
    
    ## Reporting vulnerabilities
    
    ### Vulnerabilities in TensorFlow
    
    This document covers different use cases for TensorFlow together with comments
    whether these uses were recommended or considered safe, or where we recommend
    some form of isolation when dealing with untrusted data. As a result, this
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Oct 01 06:06:35 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  6. src/runtime/runtime2.go

    	// stwStoppingTimeGC/Other are distributions of stop-the-world stopping
    	// latencies, defined as the time taken by stopTheWorldWithSema to get
    	// all Ps to stop. stwStoppingTimeGC covers all GC-related STWs,
    	// stwStoppingTimeOther covers the others.
    	stwStoppingTimeGC    timeHistogram
    	stwStoppingTimeOther timeHistogram
    
    	// stwTotalTimeGC/Other are distributions of stop-the-world total
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/fused_kernel_matcher.cc

    // target configurations on both CPU and GPU (Intel MKL, ROCm, etc.). This MLIR
    // pass covers (some of) the general CPU case and at the moment does not account
    // for any target-specific configurations.
    
    // This pass is being ported over from the Grappler Remapper pass based on
    // need/usage. File a bug to request porting over additional fusions.
    
    // TODO(b/158265178): Support GPU-specific fusions.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  8. subprojects/build-events/src/integTest/groovy/org/gradle/build/event/BuildEventsIntegrationTest.groovy

            outputContains("EVENT: finish :a:thing")
            outputContains("EVENT: finish :b:thing")
        }
    
        @Requires(value = IntegTestPreconditions.NotConfigCached, reason = "already covers CC")
        def "listener is not discarded after configuration phase when used with configuration cache"() {
            listenerReceivedConfigurationTimeData()
            registeringPlugin()
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/publishing_gradle_plugins.adoc

    <6> Set the plugin name in human-readable form.
    <7> Set a description to be displayed on the portal. It provides useful information to people who want to use your plugin.
    <8> Specifies the categories your plugin covers. It makes the plugin more likely to be discovered by people needing its functionality.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 18:40:53 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  10. pkg/util/iptables/testing/parse.go

    		if t.Chains[i].Name == chain {
    			return &t.Chains[i], nil
    		}
    	}
    	return nil, fmt.Errorf("no such chain %q", chain)
    }
    
    // Rule represents a single parsed IPTables rule. (This currently covers all of the rule
    // types that we actually use in pkg/proxy/iptables or pkg/proxy/ipvs.)
    //
    // The parsing is mostly-automated based on type reflection. The `param` tag on a field
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 11.6K bytes
    - Viewed (0)
Back to top