Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 9,026 for gives (0.38 sec)

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

    import org.eclipse.aether.resolution.VersionRangeResolutionException;
    import org.eclipse.aether.resolution.VersionRangeResult;
    
    /**
     * A model resolver to assist building of dependency POMs. This resolver gives priority to those repositories that have
     * been initially specified and repositories discovered in dependency POMs are recessively merged into the search chain.
     *
     * @see DefaultArtifactDescriptorReader
     */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  2. src/time/zoneinfo.go

    }
    
    // lookupName returns information about the time zone with
    // the given name (such as "EST") at the given pseudo-Unix time
    // (what the given time of day would be in UTC).
    func (l *Location) lookupName(name string, unix int64) (offset int, ok bool) {
    	l = l.get()
    
    	// First try for a zone with the right name that was actually
    	// in effect at the given time. (In Sydney, Australia, both standard
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:30 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/examples/client-go/pkg/client/informers/externalversions/factory.go

    	Shutdown()
    
    	// WaitForCacheSync blocks until all started informers' caches were synced
    	// or the stop channel gets closed.
    	WaitForCacheSync(stopCh <-chan struct{}) map[reflect.Type]bool
    
    	// ForResource gives generic access to a shared informer of the matching type.
    	ForResource(resource schema.GroupVersionResource) (GenericInformer, error)
    
    	// InformerFor returns the SharedIndexInformer for obj using an internal
    	// client.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 18:31:26 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/client/informers/externalversions/factory.go

    	Shutdown()
    
    	// WaitForCacheSync blocks until all started informers' caches were synced
    	// or the stop channel gets closed.
    	WaitForCacheSync(stopCh <-chan struct{}) map[reflect.Type]bool
    
    	// ForResource gives generic access to a shared informer of the matching type.
    	ForResource(resource schema.GroupVersionResource) (GenericInformer, error)
    
    	// InformerFor returns the SharedIndexInformer for obj using an internal
    	// client.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 18:31:26 UTC 2023
    - 9K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/NtlmUtil.java

        };
    
    
        /*
         * Accepts key multiple of 7
         * Returns enc multiple of 8
         * Multiple is the same like: 21 byte key gives 24 byte result
         */
        static void E ( byte[] key, byte[] data, byte[] e ) throws ShortBufferException {
            byte[] key7 = new byte[7];
            byte[] e8 = new byte[8];
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 12:07:20 UTC 2020
    - 9.7K bytes
    - Viewed (0)
  6. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/generator/tasks/NativeProjectWithDepsGeneratorTask.groovy

                        }
                    }
    
                    // Depend on all projects after this one.
                    // With the number of projects we generate, this gives us a ~7-layer deep dependency graph
                    // within a group of libraries
                    dependentProjects.addAll(libraries.drop(idx+1))
    
                    generateLibrarySubproject(subprojectName,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 07 13:12:26 UTC 2021
    - 11.2K bytes
    - Viewed (0)
  7. src/internal/fmtsort/sort_test.go

    		if i > 0 {
    			b.WriteRune(' ')
    		}
    		b.WriteString(sprintKey(m.Key))
    		b.WriteRune(':')
    		fmt.Fprint(b, m.Value)
    	}
    	return b.String()
    }
    
    // sprintKey formats a reflect.Value but gives reproducible values for some
    // problematic types such as pointers. Note that it only does special handling
    // for the troublesome types used in the test cases; it is not a general
    // printer.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  8. platforms/core-execution/build-cache-http/src/main/java/org/gradle/caching/http/HttpBuildCache.java

         * <p>
         * <b>Allowing communication over insecure protocols allows for a man-in-the-middle to impersonate the intended server,
         * and gives an attacker the ability to
         * <a href="https://max.computer/blog/how-to-take-over-the-computer-of-any-java-or-clojure-or-scala-developer/">serve malicious executable code onto the system.</a>
         * </b>
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  9. ci/official/README.md

    # export TFCI=py311,linux_x86,no_docker
    
    # Advanced: Use Remote Build Execution (RBE) (internal developers only)
    #
    #   RBE dramatically speeds up builds and testing. It also gives you a
    #   public URL to share your build results with collaborators. However,
    #   it is only available to a limited set of internal TensorFlow developers.
    #
    #   RBE is incompatible with local caching, so you must remove
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 01 03:21:19 UTC 2024
    - 8K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/math/DoubleMath.java

     * @since 11.0
     */
    @GwtCompatible(emulated = true)
    @ElementTypesAreNonnullByDefault
    public final class DoubleMath {
      /*
       * This method returns a value y such that rounding y DOWN (towards zero) gives the same result as
       * rounding x according to the specified mode.
       */
      @GwtIncompatible // #isMathematicalInteger, com.google.common.math.DoubleUtils
      static double roundIntermediate(double x, RoundingMode mode) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 18.9K bytes
    - Viewed (0)
Back to top