Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 108 of 108 for getDirs (0.15 sec)

  1. guava/src/com/google/common/collect/EnumBiMap.java

       * probably work around it by changing how we annotate the J2CL EnumMap, but that's probably more
       * trouble than just using Object.class.)
       *
       * Then we declare the getters for these fields as @GwtIncompatible so that no one can try to use
       * them under J2CL—or, as an unfortunate side effect, under GWT. We do still give the fields
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Aug 24 01:40:03 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  2. pkg/registry/core/serviceaccount/storage/storage_test.go

    	return f.staticToken, nil
    }
    
    var _ token.TokenGenerator = fakeTokenGenerator{}
    
    // Currently this getter only panics as the only test case doesn't actually need the getters to function.
    // When more test cases are added, this getter will need extending/replacing to have a real test implementation.
    type panicGetter struct{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/model/Managed.java

     * In both cases, the implementation of the calculated property getter may not call any setter method.
     *
     * <h3>Abstract classes</h3>
     * <p>
     * A managed type can be implemented as an abstract class.
     * All property getters and setters must be declared {@code abstract} (with the exception of calculated read-only properties).
     * The class cannot contain instance variables, constructors, or any methods that are not a getter or setter.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  4. pkg/test/config/mock_config.pb.go

    	return file_pkg_test_config_mock_config_proto_rawDescGZIP(), []int{0}
    }
    
    func (x *MockConfig) GetKey() string {
    	if x != nil {
    		return x.Key
    	}
    	return ""
    }
    
    func (x *MockConfig) GetPairs() []*ConfigPair {
    	if x != nil {
    		return x.Pairs
    	}
    	return nil
    }
    
    type ConfigPair struct {
    	state         protoimpl.MessageState
    	sizeCache     protoimpl.SizeCache
    	unknownFields protoimpl.UnknownFields
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 03 17:06:22 UTC 2022
    - 7.6K bytes
    - Viewed (0)
  5. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/graph/CachingDirectedGraphWalker.java

            Map<Integer, NodeDetails<N, T>> components = new HashMap<Integer, NodeDetails<N, T>>();
            Deque<N> queue = new ArrayDeque<N>(startNodes);
    
            while (!queue.isEmpty()) {
                N node = queue.getFirst();
                NodeDetails<N, T> details = seenNodes.get(node);
                if (details == null) {
                    // Have not visited this node yet. Push its successors onto the queue in front of this node and visit
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/LogContent.java

         */
        public ImmutableList<String> getLines() {
            return lines;
        }
    
        /**
         * Returns the first line. The text does not include the line separator.
         */
        public String getFirst() {
            return lines.get(0);
        }
    
        /**
         * Visits each line in this content. The line does not include the line separator.
         */
        public void eachLine(Action<? super String> action) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  7. testing/architecture-test/src/changes/archunit-store/provider-task-file-collection.txt

    Method <org.gradle.nativeplatform.tasks.InstallExecutable.getLibs()> does not have raw return type assignable to org.gradle.api.file.ConfigurableFileCollection in (InstallExecutable.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/BuildController.java

        /**
         * Fetches a snapshot of the model of the given type for the given element using the given parameter.
         *
         * <p>The parameter type must be an interface only with getters and setters and no nesting is supported.
         * The Tooling API will create a proxy instance of this interface and use the initializer to run against
         * that instance to configure it and then pass to the model builder.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 19 19:46:37 UTC 2023
    - 9.7K bytes
    - Viewed (0)
Back to top