Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 81 - 90 of 2,349 for recording (0.05 seconds)

  1. compat/maven-compat/src/main/java/org/apache/maven/project/interpolation/AbstractStringBasedModelInterpolator.java

    /*
     * Licensed to the Apache Software Foundation (ASF) under one
     * or more contributor license agreements.  See the NOTICE file
     * distributed with this work for additional information
     * regarding copyright ownership.  The ASF licenses this file
     * to you under the Apache License, Version 2.0 (the
     * "License"); you may not use this file except in compliance
     * with the License.  You may obtain a copy of the License at
     *
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Jun 06 14:28:57 GMT 2025
    - 13.6K bytes
    - Click Count (0)
  2. compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/DefaultLegacyArtifactCollector.java

                logger.debug("While recursing: " + e.getMessage(), e);
                result.addCircularDependencyException(e);
            } catch (OverConstrainedVersionException e) {
                logger.debug("While recursing: " + e.getMessage(), e);
                result.addVersionRangeViolation(e);
            } catch (ArtifactResolutionException e) {
                logger.debug("While recursing: " + e.getMessage(), e);
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Jun 06 14:28:57 GMT 2025
    - 36.5K bytes
    - Click Count (0)
  3. .teamcity/test-buckets.json

          {
            "subprojects": [
              "build-init",
              "core-api",
              "declarative-dsl-core",
              "instrumentation-reporting",
              "model-groovy",
              "plugins-jvm-test-fixtures",
              "plugins-jvm-test-suite",
              "reporting",
              "resources-s3",
              "signing",
              "testing-base"
            ],
            "parallelizationMethod": {
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Fri Aug 01 00:23:04 GMT 2025
    - 119.4K bytes
    - Click Count (0)
  4. src/test/java/jcifs/dcerpc/msrpc/netdfsTest.java

            NdrBuffer dst = new NdrBuffer(encodeBuffer, 0);
            info1.encode(dst);
    
            ByteArrayInputStream bis = new ByteArrayInputStream(bos.toByteArray());
            // Use the encoded buffer for decoding
            NdrBuffer src = new NdrBuffer(encodeBuffer, 0);
            netdfs.DfsInfo1 decodedInfo1 = new netdfs.DfsInfo1();
            decodedInfo1.decode(src);
    
            assertEquals(info1.entry_path, decodedInfo1.entry_path);
    Created: Sat Dec 20 13:44:44 GMT 2025
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 30.9K bytes
    - Click Count (0)
  5. src/test/java/jcifs/dcerpc/rpcTest.java

                // When: Decoding the unicode string
                unicodeString.decode(mockNdrBuffer);
    
                // Then: Verify the decoding sequence and values
                verify(mockNdrBuffer).align(4);
                verify(mockNdrBuffer, times(2)).dec_ndr_short();
                verify(mockNdrBuffer).dec_ndr_long();
                // No deferred decoding for null buffer
    
    Created: Sat Dec 20 13:44:44 GMT 2025
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 20.5K bytes
    - Click Count (0)
  6. compat/maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java

                }
    
                Reporting reporting = m.getReporting();
                if (reporting != null) {
                    for (ReportPlugin p : reporting.getPlugins()) {
                        validateStringNotEmpty(
                                "reporting.plugins.plugin.artifactId",
                                problems,
                                Severity.ERROR,
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Wed Sep 03 15:06:05 GMT 2025
    - 66.8K bytes
    - Click Count (0)
  7. android/guava/src/com/google/common/collect/Ordering.java

        return checkNotNull(ordering);
      }
    
      /**
       * Returns an ordering that compares objects according to the order in which they appear in the
       * given list. Only objects present in the list (according to {@link Object#equals}) may be
       * compared. This comparator imposes a "partial ordering" over the type {@code T}. Subsequent
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Tue Sep 23 17:50:58 GMT 2025
    - 39.5K bytes
    - Click Count (0)
  8. .github/SECURITY.md

    # Security Policy
    
    ## Supported Versions
    
    Information about supported Kubernetes versions can be found on the
    [Kubernetes version and version skew support policy] page on the Kubernetes website.
    
    ## Reporting a Vulnerability
    
    Instructions for reporting a vulnerability can be found on the
    [Kubernetes Security and Disclosure Information] page.
    
    Created: Fri Dec 26 09:05:12 GMT 2025
    - Last Modified: Sun Jun 16 17:14:26 GMT 2019
    - 616 bytes
    - Click Count (0)
  9. src/test/java/jcifs/dcerpc/ndr/NdrShortTest.java

                // Create separate mocks for encoding and decoding to simulate real buffer
                NdrBuffer encodeBuffer = mock(NdrBuffer.class);
                NdrBuffer decodeBuffer = mock(NdrBuffer.class);
                when(decodeBuffer.dec_ndr_short()).thenReturn(originalValue);
    
                // When: Encoding then decoding
                ndrShort1.encode(encodeBuffer);
    
    Created: Sat Dec 20 13:44:44 GMT 2025
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 11.2K bytes
    - Click Count (0)
  10. docs/contribute/code_of_conduct.md

    discrimination based on any of the protected characteristics above, including participants with
    disabilities.
    
    Reporting Issues
    ----------------
    
    If you experience or witness unacceptable behavior — or have any other concerns — please report it by
    emailing [******@****.***][codeofconduct_at]. For more details, please see our Reporting
    Guidelines below.
    
    Thanks
    ------
    
    Created: Fri Dec 26 11:42:13 GMT 2025
    - Last Modified: Sun Feb 06 02:19:09 GMT 2022
    - 5.1K bytes
    - Click Count (0)
Back to Top