Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 160 for getters (0.24 sec)

  1. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/MavenRepositorySystemSupplier.java

     * repository system instance(s) use {@link RepositorySystem#shutdown()} method on supplied instance(s).
     * <p>
     * Since Resolver 2.0 this class offers access to various components via public getters, and allows even partial object
     * graph construction.
     * <p>
     * Extend this class {@code createXXX()} methods and override to customize, if needed. The contract of this class makes
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 45.5K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/ArrayTable.java

            : new ArrayTable<R, C, V>(table);
      }
    
      private final ImmutableList<R> rowList;
      private final ImmutableList<C> columnList;
    
      // TODO(jlevy): Add getters returning rowKeyToIndex and columnKeyToIndex?
      private final ImmutableMap<R, Integer> rowKeyToIndex;
      private final ImmutableMap<C, Integer> columnKeyToIndex;
      private final @Nullable V[][] array;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/ArrayTable.java

            : new ArrayTable<R, C, V>(table);
      }
    
      private final ImmutableList<R> rowList;
      private final ImmutableList<C> columnList;
    
      // TODO(jlevy): Add getters returning rowKeyToIndex and columnKeyToIndex?
      private final ImmutableMap<R, Integer> rowKeyToIndex;
      private final ImmutableMap<C, Integer> columnKeyToIndex;
      private final @Nullable V[][] array;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/Task.java

     *
     * <ul>
     *
     * <li>The {@code Task} object itself. This includes any property getters and setters declared by the {@code Task}
     * implementation class.  The properties of this scope are readable or writable based on the presence of the
     * corresponding getter and setter methods.</li>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 17:25:12 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_6.adoc

    Existing usages should be replaced with `RuntimeException`.
    
    ==== Properties removed in Checkstyle and PMD plugins
    
    * The `configDir` getters and setters have been removed from the Checkstle task and extension.
    Use the `configDirectory` property instead.
    * The `rulePriority` getter and setter have been removed from the Pmd task and extension.
    Use the `rulesMinimumPriority` property instead.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  6. pkg/kubelet/nodestatus/setters.go

    	// per image stored in the node status.
    	MaxNamesPerImageInNodeStatus = 5
    )
    
    // Setter modifies the node in-place, and returns an error if the modification failed.
    // Setters may partially mutate the node before returning an error.
    type Setter func(ctx context.Context, node *v1.Node) error
    
    // NodeAddress returns a Setter that updates address-related information on the node.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 12:12:04 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  7. pkg/serviceaccount/claims_test.go

    		},
    	}
    
    	testcases := []claimTestCase{
    		{
    			name:      "good",
    			getter:    fakeGetter{serviceAccount, nil, nil, nil},
    			private:   &privateClaims{Kubernetes: kubernetes{Svcacct: ref{Name: "saname", UID: "sauid"}, Namespace: "ns"}},
    			expectErr: "",
    		},
    		{
    			name:      "expired",
    			getter:    fakeGetter{serviceAccount, nil, nil, nil},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/extensibility/ConventionAwareHelper.java

                Method getter = JavaPropertyReflectionUtil.findGetterMethod(sourceType, propertyName);
                if (getter != null && SupportsConvention.class.isAssignableFrom(getter.getReturnType())) {
                    SupportsConvention target;
                    try {
                        target = Cast.uncheckedNonnullCast(getter.invoke(_source));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 09:53:33 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/suggest/util/SuggestUtil.java

            } catch (final Exception e) {
                return keywords;
            }
            for (final TermQuery tq : termQueryList) {
                final String text = tq.getTerm().text();
                if ((0 == text.length()) || keywords.contains(text)) {
                    continue;
                }
                keywords.add(text);
            }
            return keywords;
        }
    
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  10. pkg/registry/core/pod/strategy.go

    func ExecLocation(
    	ctx context.Context,
    	getter ResourceGetter,
    	connInfo client.ConnectionInfoGetter,
    	name string,
    	opts *api.PodExecOptions,
    ) (*url.URL, http.RoundTripper, error) {
    	return streamLocation(ctx, getter, connInfo, name, opts, opts.Container, "exec")
    }
    
    func streamLocation(
    	ctx context.Context,
    	getter ResourceGetter,
    	connInfo client.ConnectionInfoGetter,
    	name string,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 17:51:48 UTC 2024
    - 29.8K bytes
    - Viewed (0)
Back to top