Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 738 for attributes (0.06 seconds)

  1. src/main/java/jcifs/smb1/smb1/DosFileFilter.java

            this.wildcard = wildcard;
            this.attributes = attributes;
        }
    
        /* This returns true if the file's attributes contain any of the attributes
         * specified for this filter. The wildcard has no influence on this
         * method as the server should have performed that filtering already. The
         * attributes are asserted here only because server file systems may not
    Created: 2026-04-05 00:10
    - Last Modified: 2025-08-16 01:32
    - 2.5K bytes
    - Click Count (0)
  2. .github/ISSUE_TEMPLATE/tensorflow_issue_template.yaml

        id: Python
        attributes:
          label: Python version
          placeholder: e.g., 3.9
      - type: input
        id: Bazel
        attributes:
          label: Bazel version
          description: If compiling from source
      - type: input
        id: Compiler
        attributes:
          label: GCC/compiler version
          description: If compiling from source
      - type: input
        id: Cuda
        attributes:
          label: CUDA/cuDNN version
      - type: input
    Created: 2026-04-07 12:39
    - Last Modified: 2023-06-28 18:25
    - 3.7K bytes
    - Click Count (0)
  3. src/test/java/jcifs/smb/DosFileFilterTest.java

         * Parameterized test for the {@link DosFileFilter#accept(SmbFile)} method.
         * This test covers various combinations of file attributes and filter attributes
         * to ensure the bitwise logic is correctly implemented.
         *
         * @param filterAttributes The attributes set for the filter.
         * @param fileAttributes The attributes of the mock file.
         * @param expectedResult The expected outcome of the accept method.
    Created: 2026-04-05 00:10
    - Last Modified: 2025-08-14 05:31
    - 6.2K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/sso/oic/OpenIdConnectAuthenticatorTest.java

            final Map<String, Object> attributes = new HashMap<>();
    
            authenticator.parseJwtClaim(jwtClaim, attributes);
    
            assertEquals("https://issuer.example.com", attributes.get("iss"));
            assertEquals("******@****.***", attributes.get("sub"));
            assertEquals("client-123", attributes.get("aud"));
            assertEquals(1700000000L, attributes.get("exp"));
    Created: 2026-03-31 13:07
    - Last Modified: 2026-01-15 12:54
    - 11K bytes
    - Click Count (0)
  5. .github/ISSUE_TEMPLATE/11-language-change.yml

    title: "proposal: spec: proposal title"
    
    
    body:
      - type: markdown
        attributes:
          value: |
           ## Our process for evaluating language changes can be found [here](https://go.googlesource.com/proposal/+/refs/heads/master#language-changes)
    
      - type: dropdown
        id: author-go-experience
        attributes:
          label: "Go Programming Experience"
    Created: 2026-04-07 11:13
    - Last Modified: 2024-08-08 19:02
    - 4.7K bytes
    - Click Count (0)
  6. api/maven-api-xml/src/main/java/org/apache/maven/api/xml/XmlNode.java

            /**
             * Sets the attributes of the XML node.
             * <p>
             * The provided map will be copied to ensure immutability.
             *
             * @param attributes the map of attribute names to values
             * @return this builder instance
             */
            public Builder attributes(Map<String, String> attributes) {
                this.attributes = attributes;
                return this;
            }
    
    Created: 2026-04-05 03:35
    - Last Modified: 2025-12-17 15:20
    - 18.3K bytes
    - Click Count (0)
  7. src/test/java/jcifs/pac/PacGroupTest.java

            // Verify that the constructor correctly sets the id and attributes
            assertEquals(mockSid, pacGroup.getId(), "The SID should be correctly set in the constructor.");
            assertEquals(attributes, pacGroup.getAttributes(), "The attributes should be correctly set in the constructor.");
        }
    
        /**
         * Test method for {@link jcifs.pac.PacGroup#getId()}.
         */
        @Test
        void testGetId() {
    Created: 2026-04-05 00:10
    - Last Modified: 2025-08-14 05:31
    - 1.5K bytes
    - Click Count (0)
  8. .github/ISSUE_TEMPLATE/flaking-test.yaml

          required: true
    
      - type: textarea
        id: tests
        attributes:
          label: Which tests are flaking?
        validations:
          required: true
    
      - type: textarea
        id: since
        attributes:
          label: Since when has it been flaking?
        validations:
          required: true
    
      - type: input
        id: testgrid
        attributes:
          label: Testgrid link
    
      - type: textarea
        id: reason
    Created: 2026-04-03 09:05
    - Last Modified: 2021-10-05 16:55
    - 1.4K bytes
    - Click Count (0)
  9. src/main/java/jcifs/smb/DosFileFilter.java

            this.wildcard = wildcard;
            this.attributes = attributes;
        }
    
        /**
         * This returns true if the file's attributes contain any of the attributes
         * specified for this filter. The wildcard has no influence on this
         * method as the server should have performed that filtering already. The
         * attributes are asserted here only because server file systems may not
    Created: 2026-04-05 00:10
    - Last Modified: 2025-08-16 01:32
    - 2.5K bytes
    - Click Count (0)
  10. src/main/java/jcifs/internal/smb2/lease/DirectoryCacheEntry.java

                this.attributes = attributes;
                this.creationTime = creationTime;
                this.lastAccessTime = lastAccessTime;
            }
    
            /**
             * Check if this file info matches the given attributes
             *
             * @param otherSize size to compare
             * @param otherLastModified last modified time to compare
             * @param otherAttributes attributes to compare
    Created: 2026-04-05 00:10
    - Last Modified: 2025-08-23 02:21
    - 11.4K bytes
    - Click Count (0)
Back to Top