Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 285 for easing (0.1 sec)

  1. src/cmd/vendor/golang.org/x/text/cases/cases.go

    // The advantage of using this approach is that other providers of a lower-case
    // algorithm could set different defaults by prefixing a user-provided slice
    // of options with their own. This is handy, for instance, for the precis
    // package which would override the default to not handle the Greek final sigma.
    
    var (
    	// NoLower disables the lowercasing of non-leading letters for a title
    	// caser.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  2. security/pkg/nodeagent/caclient/credentials.go

    // added; while a non-nil error will block the request If the token selected is not found, no error
    // will be returned, causing no authorization header to be set. This ensures that even if the JWT
    // token is missing (for example, on a VM that has rebooted, causing the token to be removed from
    // volatile memory), we can still proceed and allow other authentication methods to potentially
    // handle the request, such as mTLS.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/api/internal/project/NewDefaultProjectTest.groovy

            aTasks*.path == [":a:bar"]
        }
    
        def "does not allow asking for tasks using empty name"() {
            when: project.getTasksByName('', true)
            then: thrown(InvalidUserDataException)
    
            when: project.getTasksByName(null, true)
            then: thrown(InvalidUserDataException)
        }
    
        def "allows asking for unknown tasks"() {
            project.task "bar"
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:55 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  4. releasenotes/notes/alt-stat-name.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 10:09:31 UTC 2024
    - 184 bytes
    - Viewed (0)
  5. pkg/test/datasets/validation/dataset/networking-v1-ServiceEntry.yaml

      - eu.bookinfo.com
      ports:
      - number: 80
        name: http
        protocol: HTTP
      resolution: DNS
      endpoints:
      # Rather than relying on an external host that might become unreachable (causing test failures)
      # we can mock the external endpoint using service t which has no sidecar.
      - address: t.istio-system.svc.cluster.local # TODO: this is brittle
        ports:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 01 14:30:05 UTC 2024
    - 506 bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/text/language/doc.go

    // For example, it is utterly confusing to substitute spelled-out numbers
    // or dates in one language in text of another language.
    // More subtly confusing is using the wrong sorting order or casing
    // algorithm for a certain language.
    //
    // All the packages in x/text that provide locale-specific services
    // (e.g. collate, cases) should be initialized with the tag that was
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  7. platforms/jvm/jvm-services/src/main/java/org/gradle/api/internal/artifacts/JavaEcosystemSupport.java

                        details.closestMatch(javaRuntime);
                    }
                } else {
                    if (javaRuntime.equals(consumerValue)) {
                        // we're asking for a runtime variant, prefer -jars first
                        if (candidateValues.contains(javaRuntimeJars)) {
                            details.closestMatch(javaRuntimeJars);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 19:13:00 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/text/cases/context.go

    package cases
    
    import "golang.org/x/text/transform"
    
    // A context is used for iterating over source bytes, fetching case info and
    // writing to a destination buffer.
    //
    // Casing operations may need more than one rune of context to decide how a rune
    // should be cased. Casing implementations should call checkpoint on context
    // whenever it is known to be safe to return the runes processed so far.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/tf_saved_model_freeze_variables.cc

        return failure();
      }
    
      auto* context = module.getContext();
      OpBuilder builder(context);
      // Note: We can't modify the graph while navigating through it, as erasing
      // invalidate pointers.
      // So instead we capture all the updates in the below map, and then
      // process them after.
    
      // Container to hold all update actions on ops.
      // Key: Operation to update.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 09:56:53 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  10. cmd/postpolicyform.go

    // Add policy conditionals.
    const (
    	policyCondEqual         = "eq"
    	policyCondStartsWith    = "starts-with"
    	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
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 06 10:52:41 UTC 2024
    - 12.3K bytes
    - Viewed (0)
Back to top