Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for Point (0.15 sec)

  1. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultMavenPluginManager.java

                    extensionRecord = setupExtensionsRealm(project, plugin, repositorySession);
                } catch (PluginManagerException e) {
                    // extensions realm is expected to be fully setup at this point
                    // any exception means a problem in maven code, not a user error
                    throw new IllegalStateException(e);
                }
    
                ClassRealm pluginRealm = extensionRecord.getRealm();
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 25 14:13:36 GMT 2024
    - 42.5K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/util/concurrent/ExecutionList.java

        // it.
        executeListener(runnable, executor);
      }
    
      /**
       * Runs this execution list, executing all existing pairs in the order they were added. However,
       * note that listeners added after this point may be executed before those previously added, and
       * note that the execution order of all listeners is ultimately chosen by the implementations of
       * the supplied executors.
       *
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 22 21:17:24 GMT 2024
    - 6.9K bytes
    - Viewed (0)
  3. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/AbstractGradleViolationRule.groovy

            return isAnnotatedWithIncubating(constructor) || isAnnotatedWithIncubating(constructor.jApiClass)
        }
    
        protected boolean isOverride(JApiMethod method) {
            // No point in parsing the source file if the method is not there any more.
            if (method.changeStatus == JApiChangeStatus.REMOVED) {
                return false
            }
    Groovy
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Apr 23 08:40:36 GMT 2024
    - 10.4K bytes
    - Viewed (0)
  4. maven-api-impl/src/test/java/org/apache/maven/internal/impl/standalone/RepositorySystemSupplier.java

            }
            return artifactGeneratorFactories;
        }
    
        protected Map<String, ArtifactGeneratorFactory> createArtifactGeneratorFactories() {
            // by default none, this is extension point
            return new HashMap<>();
        }
    
        private Map<String, ArtifactDecoratorFactory> artifactDecoratorFactories;
    
        public final Map<String, ArtifactDecoratorFactory> getArtifactDecoratorFactories() {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 26 13:10:42 GMT 2024
    - 43.7K bytes
    - Viewed (0)
  5. callbacks/preload.go

    		names = append(names, embeddedValues(relations)...)
    	}
    	return names
    }
    
    // preloadEntryPoint enters layer by layer. It will call real preload if it finds the right entry point.
    // If the current relationship is embedded or joined, current query will be ignored.
    //
    //nolint:cyclop
    Go
    - Registered: Sun Apr 28 09:35:09 GMT 2024
    - Last Modified: Thu Apr 25 12:21:03 GMT 2024
    - 11.6K bytes
    - Viewed (0)
  6. common/scripts/setup_env.sh

    fi
    }
    
    KUBECONFIG=${KUBECONFIG:="$HOME/.kube/config"}
    parse_KUBECONFIG "${KUBECONFIG}"
    if [[ "${FOR_BUILD_CONTAINER:-0}" -eq "1" ]]; then
      KUBECONFIG="${container_kubeconfig%?}"
    fi
    
    # LOCAL_OUT should point to architecture where we are currently running versus the desired.
    # This is used when we need to run a build artifact during tests or later as part of another
    # target.
    if [[ "${FOR_BUILD_CONTAINER:-0}" -eq "1" ]]; then
    Shell Script
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Apr 23 19:52:28 GMT 2024
    - 7.6K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactory.java

            for (RepositorySystemSessionExtender extender : sessionExtenders.values()) {
                extender.extend(request, configProps, mirrorSelector, proxySelector, authSelector);
            }
    
            // at this point we have "config" with pure MANDATORY resolver config, so resolver final config properties are
            // mergedProperties + configProperties
            HashMap<String, Object> finalConfigProperties = new HashMap<>();
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 25 14:13:36 GMT 2024
    - 27.5K bytes
    - Viewed (0)
  8. .bazelrc

    # We have some invalid linker scripts in the build,
    # so we need to disable this check
    build:release_linux_base --linkopt=-Wl,--undefined-version
    
    # Container environment settings below this point.
    # Use Python 3.X as installed in container image
    build:release_linux_base --action_env PYTHON_BIN_PATH="/usr/bin/python3"
    build:release_linux_base --action_env PYTHON_LIB_PATH="/usr/lib/tf_python"
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Tue Apr 23 01:21:54 GMT 2024
    - 53.4K bytes
    - Viewed (2)
  9. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

        Object localValue = value;
        boolean rValue = false;
        if (localValue == null | localValue instanceof SetFuture) {
          // Try to delay allocating the exception. At this point we may still lose the CAS, but it is
          // certainly less likely.
          Object valueToSet =
              GENERATE_CANCELLATION_CAUSES
                  ? new Cancellation(
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 22 21:17:24 GMT 2024
    - 63K bytes
    - Viewed (0)
  10. cmd/endpoint.go

    		// As a special case make sure to trim the separator.
    
    		// NOTE: It is also perfectly fine for windows users to have a path
    		// without C:/ since at that point we treat it as relative path
    		// and obtain the full filesystem path as well. Providing C:/
    		// style is necessary to provide paths other than C:/,
    		// such as F:/, D:/ etc.
    		//
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Sun Apr 21 11:43:18 GMT 2024
    - 34.1K bytes
    - Viewed (0)
Back to top