Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 388 for IsSame (0.07 sec)

  1. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/StatefulSerializer.java

     * limitations under the License.
     */
    
    package org.gradle.internal.serialize;
    
    /**
     * Implementations must allow concurrent reading and writing, so that a thread can read and a thread can write at the same time.
     * Implementations do not need to support multiple read threads or multiple write threads.
     */
    public interface StatefulSerializer<T> {
        /**
         * Should not perform any buffering
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  2. manifests/charts/istio-operator/values.yaml

    defaults:
      hub: gcr.io/istio-testing
      tag: latest
    
      # ImagePullSecrets for operator ServiceAccount, list of secrets in the same namespace
      # used to pull operator image. Must be set for any cluster configured with private docker registry.
      imagePullSecrets: []
    
      # Specify image pull policy if default behavior isn't desired.
      # Default behavior: latest images will be Always else IfNotPresent.
      imagePullPolicy: ""
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  3. docs/en/docs/tutorial/security/first-steps.md

    ## The `password` flow
    
    Now let's go back a bit and understand what is all that.
    
    The `password` "flow" is one of the ways ("flows") defined in OAuth2, to handle security and authentication.
    
    OAuth2 was designed so that the backend or API could be independent of the server that authenticates the user.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jun 03 01:48:20 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  4. platforms/core-runtime/time/src/main/java/org/gradle/internal/time/MonotonicClock.java

     * All syncing timestamps will be the same as the previously issued timestamp.
     * The rate by which this clock slows, and therefore the time it takes to resync,
     * is determined by how frequently the clock is read.
     * If timestamps are only requested at a rate greater than the sync interval,
     * all timestamps will have the same value until the clocks synchronize (i.e. this clock will pause).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:20:17 UTC 2024
    - 5K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/text/language/doc.go

    // and will know that Cantonese ("yue") is a good match for "zh-HK".
    //
    // # Using match results
    //
    // To guarantee a consistent user experience to the user it is important to
    // use the same language tag for the selection of any locale-specific services.
    // For example, it is utterly confusing to substitute spelled-out numbers
    // or dates in one language in text of another language.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  6. samples/extauthz/README.md

        $ kubectl apply -f ext-authz.yaml
        service/ext-authz created
        deployment.apps/ext-authz created
        ```
    
        Note, you can also deploy the Ext Authz service locally with the application container in the same pod, see the example in `local-ext-authz.yaml`.
    
    1. Verify the Ext Authz server is up and running:
    
        Deploy a sleep pod to send the request:
    
        ```console
        $ kubectl apply -f ../sleep/sleep.yaml
        ```
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 21 13:52:47 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  7. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishCoordinatesIntegTest.groovy

                }
                withoutModuleMetadata {
                    expectFiles 'custom-api-2.jar'
                }
            }
        }
    
        def "warns when multiple publications share the same coordinates"() {
            given:
            settingsFile << "rootProject.name = 'duplicate-publications'"
            buildFile << """
                apply plugin: 'ivy-publish'
                apply plugin: 'java'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/utils/validators.h

    }
    
    // Returns true iff the given TensorFlow op has a `padding` attribute whose
    // value is "SAME" or "VALID", and writes the attribute to `padding`.
    inline bool TFPaddingIsSameOrValid(Operation *op, StringAttr *padding) {
      auto padding_attr = op->getAttrOfType<StringAttr>("padding");
      if (padding_attr.getValue() != "SAME" && padding_attr.getValue() != "VALID")
        return false;
      *padding = padding_attr;
      return true;
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/cel/environment/base_test.go

    						t.Errorf("Did not expect gap in presence of %s library. It was "+
    							"removed in %v and not added again until %v. When versioning "+
    							"libraries, introduce a new version of the library as the same "+
    							"kubernetes version that the old version of the library is removed.", name, versionTracking.removed, vop.IntroducedVersion)
    					} else if vop.IntroducedVersion.LessThan(versionTracking.removed) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  10. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/AbstractSerializer.java

    import com.google.common.base.Objects;
    
    /**
     * This abstract class provide a sensible default implementation for {@code Serializer} equality. This equality
     * implementation is required to enable cache instance reuse within the same Gradle runtime. Serializers are used
     * as cache parameter which need to be compared to determine compatible cache.
     */
    public abstract class AbstractSerializer<T> implements Serializer<T> {
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top