Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for target_name (0.32 sec)

  1. cmd/metrics-v2.go

    						Name:      "target_total_events",
    						Help:      "Total number of events sent (or) queued to the target",
    						Type:      counterMetric,
    					},
    					VariableLabels: map[string]string{"target_id": id.ID, "target_name": id.Name},
    					Value:          float64(st.TotalEvents),
    				})
    				metrics = append(metrics, MetricV2{
    					Description: MetricDescription{
    						Namespace: minioNamespace,
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 133.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/ntlmssp/Type2Message.java

            int flags = getFlags();
            final String targetName = getTarget();
            final byte[] targetInformationBytes = getTargetInformation();
            byte[] targetBytes = {};
    
            if (getFlag(NTLMSSP_REQUEST_TARGET)) {
                if (targetName != null && targetName.length() != 0) {
                    targetBytes = (flags & NTLMSSP_NEGOTIATE_UNICODE) != 0 ? targetName.getBytes(UNI_ENCODING)
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 14.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/NtlmContext.java

            return this.netbiosName;
        }
    
        /**
         * Sets the target server's Service Principal Name (SPN).
         * @param targetName
         *            the target's SPN
         */
        public void setTargetName(final String targetName) {
            this.targetName = targetName;
        }
    
        @Override
        public byte[] initSecContext(final byte[] token, final int offset, final int len) throws SmbException {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 17.3K bytes
    - Viewed (0)
  4. src/main/java/jcifs/ntlmssp/av/AvTargetName.java

            super(AvPair.MsvAvTargetName, raw);
        }
    
        /**
         * Constructs an AvTargetName with the specified target name
         *
         * @param targetName the target name string to encode
         */
        public AvTargetName(final String targetName) {
            this(encode(targetName));
        }
    
        /**
         * Gets the target name from this AV pair
         *
         * @return the target name
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2K bytes
    - Viewed (0)
  5. src/test/java/jcifs/ntlmssp/av/AvTargetNameTest.java

            AvTargetName avTargetName = new AvTargetName(targetName);
    
            // Verify that getTargetName returns the original string
            assertEquals(targetName, avTargetName.getTargetName(), "Retrieved target name should match the original string");
        }
    
        /**
         * Test getTargetName() method with raw bytes input.
         * Verifies that the correct string is reconstructed from raw UTF-16LE bytes.
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 4.1K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/ntlmssp/Type2Message.java

            try {
                final String targetName = getTarget();
                final byte[] challenge = getChallenge();
                byte[] context = getContext();
                final byte[] targetInformation = getTargetInformation();
                int flags = getFlags();
                byte[] target = {};
                if ((flags & NTLMSSP_REQUEST_TARGET) != 0) {
                    if (targetName != null && targetName.length() != 0) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 13K bytes
    - Viewed (0)
  7. src/main/java/jcifs/ntlmssp/Type3Message.java

         */
        public Type3Message(final CIFSContext tc, final Type2Message type2, final String targetName, final String password, final String domain,
                final String user, final String workstation, final int flags) throws GeneralSecurityException, CIFSException {
            // keep old behavior of anonymous auth when no password is provided
            this(tc, type2, targetName, password, domain, user, workstation, flags, false);
        }
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 32.7K bytes
    - Viewed (0)
  8. okhttp/build.gradle.kts

    configure<AnimalSnifferExtension> {
      annotation = "okhttp3.internal.SuppressSignatureCheck"
      defaultTargets("jvmMain", "debug")
    }
    
    project.tasks.withType<AnimalSniffer> {
      if (targetName == "animalsnifferJvmMain") {
        animalsnifferSignatures = jvmSignature
      } else {
        animalsnifferSignatures = androidSignature
      }
    }
    
    configure<CheckstyleExtension> {
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Thu Jul 03 03:59:03 UTC 2025
    - 9.4K bytes
    - Viewed (0)
Back to top