Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 259 for Accessible (0.25 sec)

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

            Package getPackage(ClassLoader classLoader, String name);
        }
    
        /**
         * This class makes it a bit easier to use {@link MethodHandles.Lookup}.
         * In order to access a method, a lookup object which is accessible to this method must be provided.
         * Usually, this class and the target Gradle-managed class loader exist in the same module, so everything works.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/os/OperatingSystemTest.groovy

                    }
                }
                return true
            } catch (Exception e) {
                System.err.println "Unable to make fields accessible on this JVM, error was:\n${e.message}"
                return false
            }
        }
    
        private static void makeFinalFieldAccessibleForTesting(Field field) {
            field.setAccessible(true)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/DefaultLenientConfiguration.java

            resolutionHost.rethrowFailure("artifacts", visitor.getFailures());
            return visitor.artifacts;
        }
    
        /**
         * Returns a subset of {@code artifactResults} accessible from dependencies matching {@code dependencySpec}.
         */
        private ResolvedArtifactSet resolveFilteredArtifacts(Spec<? super Dependency> dependencySpec, SelectedArtifactResults artifactResults) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/asm/ClassDependenciesVisitor.java

            ClassDependenciesVisitor visitor = new ClassDependenciesVisitor(new ClassRelevancyFilter(className), reader, interner);
            reader.accept(visitor, ClassReader.SKIP_FRAMES);
    
            // Remove the "API accessible" types from the "privately used types"
            visitor.privateTypes.removeAll(visitor.accessibleTypes);
            String name = visitor.moduleName != null ? visitor.moduleName : className;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 27 13:49:15 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  5. src/mime/multipart/formdata.go

    		for _, v := range vs {
    			size += int64(len(v))
    		}
    	}
    	return size
    }
    
    // Form is a parsed multipart form.
    // Its File parts are stored either in memory or on disk,
    // and are accessible via the [*FileHeader]'s Open method.
    // Its Value parts are stored as strings.
    // Both are keyed by field name.
    type Form struct {
    	Value map[string][]string
    	File  map[string][]*FileHeader
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 16:12:35 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  6. src/internal/trace/base.go

    	// they don't appear in strings.
    	extraStrings   []string
    	extraStringIDs map[string]extraStringID
    	nextExtra      extraStringID
    
    	// expData contains extra unparsed data that is accessible
    	// only to ExperimentEvent via an EventExperimental event.
    	expData map[event.Experiment]*ExperimentalData
    }
    
    // addExtraString adds an extra string to the evTable and returns
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/TestDB.h

     *  <br /><br />
     *
     *  It is recommended that the name of each CU_Test in a suite have
     *  a unique name.  Otherwise, only the first-registered test having 
     *  a given name will be accessible by that name.  There are no 
     *  restrictions on the test function.  This means that the same 
     *  function could, in principle, be called more than once from 
     *  different tests.
     *
     *  @see CU_Suite
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 40.4K bytes
    - Viewed (0)
  8. src/runtime/netpoll_windows.go

    // The source values are arbitrary. There is no risk of collision with user
    // defined values because the only way to set the key of an overlapped entry
    // is using the iocphandle, which is not accessible to user code.
    const (
    	netpollSourceReady = iota + 1
    	netpollSourceBreak
    	netpollSourceTimer
    )
    
    const (
    	// sourceBits is the number of bits needed to represent a source.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  9. pilot/pkg/xds/eds_sh_test.go

    	// Network has 2 gateways
    	initRegistry(s, 3, []string{"159.122.219.3", "179.114.119.3"}, 3)
    	// Set up a cluster registry for network 4 with 4 instances for the service 'service5'
    	// but without any gateway, which is treated as accessible directly.
    	initRegistry(s, 4, []string{}, 4)
    
    	// Push contexts needs to be updated
    	s.Discovery.ConfigUpdate(&model.PushRequest{Full: true})
    	time.Sleep(time.Millisecond * 200) // give time for cache to clear
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  10. maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/PluginDescriptor.java

            return dependencyNode;
        }
    
        public void setDependencyNode(DependencyNode dependencyNode) {
            this.dependencyNode = dependencyNode;
        }
    
        /**
         * The map of artifacts accessible by the versionlessKey, i.e. groupId:artifactId
         *
         * @return a Map of artifacts, never {@code null}
         * @see #getArtifacts()
         */
        public Map<String, Artifact> getArtifactMap() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Apr 14 17:14:22 UTC 2024
    - 16.2K bytes
    - Viewed (0)
Back to top