Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 321 for gather (0.4 sec)

  1. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    Note that you can't use this technique if you want to apply such a plugin either to the root project build script of a multi-project build (rather than solely to its subprojects) or to a single-project build. You'll need to use a different approach in those cases that we detail in <<kotlin_dsl#sec:plugins_resolution_strategy,another section>>.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/prove.go

    					ft.update(parent, x, vmin, d, r)
    					ft.update(parent, vmax, x, d, r|eq)
    				} else {
    					// We know that either x>min OR x<=max. factsTable cannot record OR conditions,
    					// so let's see if we can already prove that one of them is false, in which case
    					// the other must be true
    					if l, has := ft.limits[x.ID]; has {
    						if l.max <= min {
    							if r&eq == 0 || l.max < min {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    | Windows
    | https://visualstudio.microsoft.com/[Visual C++]
    | Windows XP and later, Visual C++ 2010/2012/2013/2015/2017/2019.
    
    | Windows
    | http://gcc.gnu.org/[GCC] with http://cygwin.com[Cygwin 32 and Cygwin 64]
    | Windows XP and later.
    
    | Windows
    | http://gcc.gnu.org/[GCC] with http://www.mingw.org/[MinGW] and https://mingw-w64.org/doku.php[MinGW64]
    | Windows XP and later.
    |===
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  4. fess-crawler-lasta/src/main/resources/crawler/extractor.xml

    				"application/vnd.adobe.aftereffects.project",
    				"application/vnd.adobe.aftereffects.template",
    				"application/vnd.adobe.xdp+xml",
    				"application/vnd.adobe.xfdf",
    				"application/vnd.aether.imp",
    				"application/vnd.airzip.filesecure.azf",
    				"application/vnd.airzip.filesecure.azs",
    				"application/vnd.amazon.ebook",
    				"application/vnd.americandynamics.acc",
    				"application/vnd.amiga.ami",
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Aug 01 21:40:30 UTC 2020
    - 49K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler.go

    	structuralSchemas  map[string]*structuralschema.Structural // by version
    	structuralSchemaGK schema.GroupKind
    }
    
    func (d unstructuredDefaulter) Default(in runtime.Object) {
    	// Delegate for things other than Unstructured, and other GKs
    	u, ok := in.(runtime.Unstructured)
    	if !ok || u.GetObjectKind().GroupVersionKind().GroupKind() != d.structuralSchemaGK {
    		d.delegate.Default(in)
    		return
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  6. src/main/webapp/js/admin/plugins/daterangepicker/daterangepicker.js

              html += '</table>';
    L848:
    L849:            this.container.find('.drp-calendar.' + side + ' .calendar-table').html(html);
    L850:
    L851:        },
    L852:
    L853:        renderTimePicker: function(side) {
    L854:
    L855:            // Don't bother updating the time picker if it's currently disabled
    L856:            // because an end date hasn't been clicked yet
    L857:            if (side == 'right' && !this.endDate) return;
    L858:
    L859:            var html, selected, minDate, maxDate = this.maxDate;
    ...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 04:21:06 UTC 2020
    - 65.7K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

    import org.eclipse.aether.RepositorySystem;
    import org.eclipse.aether.RepositorySystemSession;
    import org.eclipse.aether.RequestTrace;
    import org.eclipse.aether.impl.RemoteRepositoryManager;
    import org.eclipse.aether.repository.LocalRepositoryManager;
    import org.eclipse.aether.repository.RemoteRepository;
    import org.eclipse.aether.repository.WorkspaceRepository;
    import org.eclipse.aether.resolution.ArtifactRequest;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 16:34:29 UTC 2024
    - 57.1K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modload/load.go

    			// ones! — is not a Go package, and we can't resolve it to a package
    			// path because that path could plausibly be provided by some other
    			// module.
    			//
    			// Any other error indicates that the package “exists” (at least in the
    			// sense that it cannot exist in any other module), but has some other
    			// problem (such as a syntax error).
    			return "", err
    		}
    	}
    
    	for _, mod := range MainModules.Versions() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  9. src/time/time.go

    // not. The general rule is that the wall clock is for telling time and
    // the monotonic clock is for measuring time. Rather than split the API,
    // in this package the Time returned by [time.Now] contains both a wall
    // clock reading and a monotonic clock reading; later time-telling
    // operations use the wall clock reading, but later time-measuring
    // operations, specifically comparisons and subtractions, use the
    // monotonic clock reading.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/Sets.java

      }
    
      /**
       * An unmodifiable view of a set which may be backed by other sets; this view will change as the
       * backing sets do. Contains methods to copy the data into a new set which will then remain
       * stable. There is usually no reason to retain a reference of type {@code SetView}; typically,
       * you either use it as a plain {@link Set}, or immediately invoke {@link #immutableCopy} or
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
Back to top