Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 107 for asSnapshot (0.15 sec)

  1. maven-core/src/main/java/org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactory.java

         *     <li>"s" - contextual snapshot filter</li>
         *     <li>"e(G:A:V)" - predicate filter (leaves out G:A:V from range, if hit, V can be range)</li>
         * </ul>
         * Example filter expression: {@code "h(5);s;e(org.foo:bar:1)} will cause: ranges are filtered for "top 5" (instead
         * full range), snapshots are banned if root project is not a snapshot, and if range for {@code org.foo:bar} is
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 14:13:36 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  2. apache-maven/pom.xml

      <modelVersion>4.0.0</modelVersion>
    
      <parent>
        <groupId>org.apache.maven</groupId>
        <artifactId>maven</artifactId>
        <version>4.0.0-beta-4-SNAPSHOT</version>
      </parent>
    
      <artifactId>apache-maven</artifactId>
      <packaging>pom</packaging>
    
      <name>Apache Maven Distribution</name>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/DefaultBuildTreeModelControllerServices.kt

    import org.gradle.internal.service.Provides
    import org.gradle.internal.service.ServiceRegistration
    import org.gradle.internal.service.ServiceRegistrationProvider
    import org.gradle.internal.snapshot.ValueSnapshotter
    import org.gradle.tooling.provider.model.internal.ToolingModelParameterCarrier
    import org.gradle.util.internal.IncubationLogger
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  4. fess-crawler/pom.xml

    	<name>Fess Crawler</name>
    	<description>Fess Crawler is a crawler framework.</description>
    	<parent>
    		<groupId>org.codelibs.fess</groupId>
    		<artifactId>fess-crawler-parent</artifactId>
    		<version>14.15.0-SNAPSHOT</version>
    		<relativePath>../pom.xml</relativePath>
    	</parent>
    	<build>
    		<plugins>
    			<plugin>
    				<artifactId>maven-compiler-plugin</artifactId>
    			</plugin>
    			<plugin>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu May 30 06:32:24 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  5. subprojects/core/build.gradle.kts

        testFixturesApi(testFixtures(project(":hashing"))) {
            because("test fixtures expose test hash codes")
        }
        testFixturesApi(testFixtures(project(":snapshots"))) {
            because("test fixtures expose file snapshot related functionality")
        }
        testFixturesApi(project(":unit-test-fixtures")) {
            because("test fixtures expose ProjectBuilder")
        }
        testFixturesImplementation(project(":build-option"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/internal/concurrent/TaskRunner.kt

        backend.execute(this@TaskRunner, runnable)
      }
    
      fun newQueue(): TaskQueue {
        val name = lock.withLock { nextQueueName++ }
        return TaskQueue(this, "Q$name")
      }
    
      /**
       * Returns a snapshot of queues that currently have tasks scheduled. The task runner does not
       * necessarily track queues that have no tasks scheduled.
       */
      fun activeQueues(): List<TaskQueue> {
        lock.withLock {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 29 00:33:04 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  7. pkg/controlplane/apiserver/options/options_test.go

    		"--proxy-client-key-file=/var/run/kubernetes/proxy.key",
    		"--request-timeout=2m",
    		"--storage-backend=etcd3",
    		"--lease-reuse-duration-seconds=100",
    	}
    	fs.Parse(args)
    
    	// This is a snapshot of expected options parsed by args.
    	expected := &Options{
    		GenericServerRunOptions: &apiserveroptions.ServerRunOptions{
    			AdvertiseAddress:            netutils.ParseIPSloppy("192.168.10.10"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  8. src/runtime/trace.go

    	// Record the fact that a GC is active, if applicable.
    	if gcphase == _GCmark || gcphase == _GCmarktermination {
    		tl.GCActive()
    	}
    
    	// Dump a snapshot of memory, if enabled.
    	if trace.enabledWithAllocFree {
    		traceSnapshotMemory(firstGen)
    	}
    
    	// Record the heap goal so we have it at the very beginning of the trace.
    	tl.HeapGoal()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  9. maven-model-builder/pom.xml

      <modelVersion>4.0.0</modelVersion>
    
      <parent>
        <groupId>org.apache.maven</groupId>
        <artifactId>maven</artifactId>
        <version>4.0.0-beta-4-SNAPSHOT</version>
      </parent>
    
      <artifactId>maven-model-builder</artifactId>
    
      <name>Maven Model Builder</name>
      <description>The effective model builder, with inheritance, profile activation, interpolation, ...</description>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  10. testing/internal-testing/src/main/groovy/org/gradle/test/preconditions/UnitTestPreconditions.groovy

            }
        }
    
        static final class StableGroovy implements TestPrecondition {
            @Override
            boolean isSatisfied() {
                !GroovySystem.version.endsWith("-SNAPSHOT")
            }
        }
    
        static final class NotStableGroovy implements TestPrecondition {
            @Override
            boolean isSatisfied() {
                notSatisfied(StableGroovy)
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 03:26:38 UTC 2024
    - 16.3K bytes
    - Viewed (0)
Back to top