Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 77 for Actime (0.24 sec)

  1. src/time/time.go

    // that the methods [Time.GobDecode], [Time.UnmarshalBinary], [Time.UnmarshalJSON] and
    // [Time.UnmarshalText] are not concurrency-safe.
    //
    // Time instants can be compared using the [Time.Before], [Time.After], and [Time.Equal] methods.
    // The [Time.Sub] method subtracts two instants, producing a [Duration].
    // The [Time.Add] method adds a Time and a Duration, producing a Time.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  2. pkg/controller/cronjob/cronjob_controllerv2_test.go

    	T1, err := time.Parse(time.RFC3339, "2016-05-19T08:59:00Z")
    	if err != nil {
    		panic("test setup error")
    	}
    	return T1
    }
    
    func justAfterTheHour() *time.Time {
    	T1, err := time.Parse(time.RFC3339, "2016-05-19T10:01:00Z")
    	if err != nil {
    		panic("test setup error")
    	}
    	return &T1
    }
    
    func justAfterTheHourInZone(tz string) time.Time {
    	location, err := time.LoadLocation(tz)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 70.8K bytes
    - Viewed (0)
  3. pkg/scheduler/internal/queue/scheduling_queue.go

    	DefaultPodInitialBackoffDuration time.Duration = 1 * time.Second
    	// DefaultPodMaxBackoffDuration is the default value for the max backoff duration
    	// for unschedulable pods. To change the default podMaxBackoffDurationSeconds used by the
    	// scheduler, update the ComponentConfig value in defaults.go
    	DefaultPodMaxBackoffDuration time.Duration = 10 * time.Second
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/PomReaderProfileTest.groovy

    import spock.lang.Issue
    
    class PomReaderProfileTest extends AbstractPomReaderTest {
        final ImmutableModuleIdentifierFactory moduleIdentifierFactory = Mock()
    
        def "parse POM without active profile"() {
            when:
            pomFile << """
    <project>
        <modelVersion>4.0.0</modelVersion>
        <groupId>group-one</groupId>
        <artifactId>artifact-one</artifactId>
        <version>version-one</version>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  5. src/runtime/mprof.go

    				lock(&profMemFutureLock[c])
    				mp.active.add(&mp.future[c])
    				mp.future[c] = memRecordCycle{}
    				unlock(&profMemFutureLock[c])
    			}
    			if inuseZero || mp.active.alloc_bytes != mp.active.free_bytes {
    				n++
    			}
    		}
    	}
    	if n <= size {
    		ok = true
    		for b := head; b != nil; b = b.allnext {
    			mp := b.mp()
    			if inuseZero || mp.active.alloc_bytes != mp.active.free_bytes {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  6. pkg/controller/job/job_controller.go

    	}
    
    	if jobSuspended(job) {
    		logger.V(4).Info("Deleting all active pods in suspended job", "job", klog.KObj(job), "active", active)
    		podsToDelete := activePodsForRemoval(job, jobCtx.activePods, int(active))
    		jm.expectations.ExpectDeletions(logger, jobKey, len(podsToDelete))
    		removed, err := jm.deleteJobPods(ctx, job, jobKey, podsToDelete)
    		active -= removed
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/GradlePomModuleDescriptorParserProfileTest.groovy

    import static org.gradle.api.internal.component.ArtifactType.MAVEN_POM
    
    class GradlePomModuleDescriptorParserProfileTest extends AbstractGradlePomModuleDescriptorParserTest {
    
        def "pom with project coordinates defined by active profile properties"() {
            given:
            pomFile << """
    <project>
        <modelVersion>4.0.0</modelVersion>
        <groupId>\${some.group}</groupId>
        <artifactId>\${some.artifact}</artifactId>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 49.8K bytes
    - Viewed (0)
  8. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

                    "Active all ||${project.basedir}||",
                    "<plugin-all-profiles-in>Active all ||${project.basedir}||</plugin-all-profiles-in>");
    
            checkBuildPluginWithArtifactId(
                    activeProfilePlugins,
                    "only-active-profile",
                    "Active only ||${project.basedir}||",
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 93.2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/css/javadoc.css

        --search-input-text-color: #000000;
        --search-input-placeholder-color: #909090;
        /* Highlight color for active search tag target */
        --search-tag-highlight-color: #ffff00;
        /* Adjustments for icon and active background colors of copy-to-clipboard buttons */
        --copy-icon-brightness: 100%;
        --copy-button-background-color-active: rgba(168, 168, 176, 0.3);
        /* Colors for invalid tag notifications */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 14:25:49 UTC 2024
    - 50.5K bytes
    - Viewed (0)
  10. cmd/xl-storage.go

    	if filePath == "" {
    		return nil, dmTime, errFileNotFound
    	}
    
    	xlPath := pathJoin(filePath, xlStorageFormatFile)
    	if readData {
    		buf, dmTime, err = s.readAllData(ctx, volume, volumeDir, xlPath, false)
    	} else {
    		buf, dmTime, err = s.readMetadataWithDMTime(ctx, xlPath)
    		if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
Back to top