Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 812 for para1 (1.03 sec)

  1. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/Describables.java

            private final Object part1;
            private final Object part2;
    
            TwoPartDescribable(Object part1, Object part2) {
                this.part1 = part1;
                this.part2 = part2;
            }
    
            @Override
            public String getDisplayName() {
                StringBuilder builder = new StringBuilder(48);
                appendDisplayName(part1, builder);
                builder.append(' ');
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/beans/util/BeanUtil.java

        }
    
        /**
         * コピー元のBeanを新しいBeanのインスタンスにコピーして返します。
         *
         * @param <T> コピー先となるBeanの型
         * @param src コピー元のBean。{@literal null}であってはいけません
         * @param destClass コピー先となるBeanの型。{@literal null}であってはいけません
         * @param options コピーのオプション。{@literal null}であってはいけません
         * @return コピーされた新しいBean
         * @see CopyOptionsUtil
         */
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  3. guava/src/com/google/common/util/concurrent/AtomicDoubleArray.java

       *
       * @param i the index
       * @param newValue the new value
       */
      public final void lazySet(int i, double newValue) {
        long next = doubleToRawLongBits(newValue);
        longs.lazySet(i, next);
      }
    
      /**
       * Atomically sets the element at position {@code i} to the given value and returns the old value.
       *
       * @param i the index
       * @param newValue the new value
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  4. pkg/util/iptables/testing/parse.go

    	Raw string
    
    	Chain   iptables.Chain `param:"-A"`
    	Comment *IPTablesValue `param:"--comment"`
    
    	Protocol *IPTablesValue `param:"-p" negatable:"true"`
    
    	SourceAddress *IPTablesValue `param:"-s" negatable:"true"`
    	SourceType    *IPTablesValue `param:"--src-type" negatable:"true"`
    	SourcePort    *IPTablesValue `param:"--sport" negatable:"true"`
    
    	DestinationAddress *IPTablesValue `param:"-d" negatable:"true"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/log/Logger.java

         * DEBUG情報を出力します。
         *
         * @param message
         *            メッセージ
         * @param throwable
         *            例外
         */
        public void debug(final Object message, final Throwable throwable) {
            if (isDebugEnabled()) {
                log.debug(toString(message), throwable);
            }
        }
    
        /**
         * DEBUG情報を出力します。
         *
         * @param message
         *            メッセージ
         */
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/Session.java

         *
         * @param groupId the group identifier, or {@code null} is unspecified
         * @param artifactId the artifact identifier, or {@code null} is unspecified
         * @param version the artifact version, or {@code null} is unspecified
         * @param classifier the artifact classifier, or {@code null} is unspecified
         * @param extension the artifact extension, or {@code null} is unspecified
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  7. test/escape2.go

    	return b.ii
    }
    
    func (b Bar) AlsoLeak() *int { // ERROR "leaking param: b to result ~r0 level=0$"
    	return b.ii
    }
    
    func (b Bar) LeaksToo() *int { // ERROR "leaking param: b to result ~r0 level=0$"
    	v := 0 // ERROR "moved to heap: v$"
    	b.ii = &v
    	return b.ii
    }
    
    func (b *Bar) LeaksABit() *int { // ERROR "leaking param: b to result ~r0 level=1$"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 35.1K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/DependencyHandler.java

        /**
         * Adds a dependency to the given configuration, and configures the dependency using the given closure.
         *
         * @param configurationName The name of the configuration.
         * @param dependencyNotation The dependency notation, in one of the notations described above.
         * @param configureClosure The closure to use to configure the dependency.
         * @return The dependency, or null if dependencyNotation is a provider.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:16:36 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/dsl/dependencies/DependenciesExtensionModule.java

        }
    
        /**
         * Add a dependency.
         *
         * @param files files to add as a dependency
         */
        public static void call(DependencyCollector self, FileCollection files) {
            self.add(files);
        }
    
        /**
         * Add a dependency.
         *
         * @param files files to add as a dependency
         * @param configuration an action to configure the dependency
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  10. test/escape2n.go

    	return b.ii
    }
    
    func (b Bar) AlsoLeak() *int { // ERROR "leaking param: b to result ~r0 level=0$"
    	return b.ii
    }
    
    func (b Bar) LeaksToo() *int { // ERROR "leaking param: b to result ~r0 level=0$"
    	v := 0 // ERROR "moved to heap: v$"
    	b.ii = &v
    	return b.ii
    }
    
    func (b *Bar) LeaksABit() *int { // ERROR "leaking param: b to result ~r0 level=1$"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 35.1K bytes
    - Viewed (0)
Back to top