Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 385 for IsSame (0.12 sec)

  1. android/guava/src/com/google/common/hash/Hashing.java

        }
      }
    
      /**
       * Returns a hash code, having the same bit length as each of the input hash codes, that combines
       * the information of these hash codes in an ordered fashion. That is, whenever two equal hash
       * codes are produced by two calls to this method, it is <i>as likely as possible</i> that each
       * was computed from the <i>same</i> input hash codes in the <i>same</i> order.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 09 00:37:15 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  2. pkg/config/analysis/msg/messages.yaml

        args:
          - name: annotation
            type: string
    
      - name: "DeploymentConflictingPorts"
        code: IST0137
        level: Warning
        description: "Two services selecting the same workload with the same targetPort MUST refer to the same port."
        template: "This deployment %s is associated with multiple services %v using targetPort %q but different ports: %v."
        args:
          - name: deployment
            type: string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/ClassLoaderUtils.java

         *
         * Since Java 9, reflection is severely restrained, and a new API {@link MethodHandles.Lookup#defineClass} is introduced.
         * However, this API can only "defines a class to the same class loader and in the same runtime package and protection domain as this lookup's lookup class",
         * which means, we can only use this API safely in the decorating scenario where the decorated class acts as the lookup object.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  4. pkg/kubelet/volumemanager/cache/desired_state_of_world_test.go

    	verifyPodExistsInVolumeDsw(t, podName, generatedVolumeName, "" /* SELinuxContext */, dsw)
    	verifyVolumeExistsWithSpecNameInVolumeDsw(t, podName, volumeSpec.Name(), dsw)
    }
    
    // Calls AddPodToVolume() twice to add the same pod to the same volume
    // Verifies newly added pod/volume exists via
    // PodExistsInVolume() VolumeExists() and GetVolumesToMount() and no errors.
    func Test_AddPodToVolume_Positive_ExistingPodExistingVolume(t *testing.T) {
    	// Arrange
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 34K bytes
    - Viewed (0)
  5. docs/en/docs/deployment/https.md

    ### Multiple Applications
    
    In the same server (or servers), there could be **multiple applications**, for example, other API programs or a database.
    
    Only one process can be handling the specific IP and port (the TLS Termination Proxy in our example) but the other applications/processes can be running on the server(s) too, as long as they don't try to use the same **combination of public IP and port**.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jan 11 16:31:18 UTC 2024
    - 12K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1beta1/types.go

    	//         set username.prefix=""
    	//     (2) --oidc-username-prefix="" and  --oidc-username-claim != "email", prefix was "<value of --oidc-issuer-url>#". For the same
    	//         behavior using authentication config, set username.prefix="<value of issuer.url>#"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 17:59:05 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  7. docs/en/docs/tutorial/request-files.md

        ```Python hl_lines="7  13"
        {!> ../../../docs_src/request_files/tutorial001_03.py!}
        ```
    
    ## Multiple File Uploads
    
    It's possible to upload several files at the same time.
    
    They would be associated to the same "form field" sent using "form data".
    
    To use that, declare a list of `bytes` or `UploadFile`:
    
    === "Python 3.9+"
    
        ```Python hl_lines="10  15"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Mar 13 19:02:19 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  8. platforms/core-runtime/wrapper-shared/src/main/java/org/gradle/wrapper/Install.java

                logger.log("Could not set executable permissions for: " + gradleCommand.getAbsolutePath());
            }
        }
    
        private boolean isWindows() {
            String osName = System.getProperty("os.name").toLowerCase(Locale.US);
            return osName.contains("windows");
        }
    
        private boolean deleteDir(File dir) {
            if (dir.isDirectory()) {
                String[] children = dir.list();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/storage/v1/generated.proto

      // name represents the name of the CSI driver that this object refers to.
      // This MUST be the same name returned by the CSI GetPluginName() call for
      // that driver.
      optional string name = 1;
    
      // nodeID of the node from the driver point of view.
      // This field enables Kubernetes to communicate with storage systems that do
      // not share the same nomenclature for nodes. For example, Kubernetes may
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/storage/v1beta1/generated.proto

      // name represents the name of the CSI driver that this object refers to.
      // This MUST be the same name returned by the CSI GetPluginName() call for
      // that driver.
      optional string name = 1;
    
      // nodeID of the node from the driver point of view.
      // This field enables Kubernetes to communicate with storage systems that do
      // not share the same nomenclature for nodes. For example, Kubernetes may
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 25K bytes
    - Viewed (0)
Back to top