Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 213 for timerDone (0.24 sec)

  1. platforms/documentation/docs/src/docs/dsl/org.gradle.api.publish.maven.MavenPomDeveloper.xml

                </tr>
                <tr>
                    <td>organization</td>
                </tr>
                <tr>
                    <td>organizationUrl</td>
                </tr>
                <tr>
                    <td>timezone</td>
                </tr>
                <tr>
                    <td>roles</td>
                </tr>
                <tr>
                    <td>properties</td>
                </tr>
            </table>
        </section>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/MavenPomContributor.java

         */
        Property<String> getOrganizationUrl();
    
        /**
         * The roles of this contributor.
         */
        SetProperty<String> getRoles();
    
        /**
         * The timezone of this contributor.
         */
        Property<String> getTimezone();
    
        /**
         * The properties of this contributor.
         */
        MapProperty<String, String> getProperties();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  3. src/time/zoneinfo.go

    			if r == '>' {
    				return s[1:i], s[i+1:], true
    			}
    		}
    		return "", "", false
    	}
    }
    
    // tzsetOffset returns the timezone offset at the start of the tzset string s,
    // and the remainder of s, and reports whether the parsing is OK.
    // The timezone offset is returned as a number of seconds.
    func tzsetOffset(s string) (offset int, rest string, ok bool) {
    	if len(s) == 0 {
    		return 0, "", false
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:30 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/dsl/org.gradle.api.publish.maven.MavenPomContributor.xml

                </tr>
                <tr>
                    <td>organization</td>
                </tr>
                <tr>
                    <td>organizationUrl</td>
                </tr>
                <tr>
                    <td>timezone</td>
                </tr>
                <tr>
                    <td>roles</td>
                </tr>
                <tr>
                    <td>properties</td>
                </tr>
            </table>
        </section>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  5. pkg/registry/batch/cronjob/strategy_test.go

    		},
    	}
    	validCronjobSpec = batch.CronJobSpec{
    		Schedule:          "5 5 * * ?",
    		ConcurrencyPolicy: batch.AllowConcurrent,
    		TimeZone:          ptr.To("Asia/Shanghai"),
    		JobTemplate: batch.JobTemplateSpec{
    			Spec: batch.JobSpec{
    				Template:       validPodTemplateSpec,
    				CompletionMode: completionModePtr(batch.IndexedCompletion),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 14:34:53 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  6. src/main/java/jcifs/config/BaseConfiguration.java

    import java.util.Arrays;
    import java.util.HashMap;
    import java.util.HashSet;
    import java.util.List;
    import java.util.Map;
    import java.util.Set;
    import java.util.StringTokenizer;
    import java.util.TimeZone;
    
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    import jcifs.CIFSException;
    import jcifs.Configuration;
    import jcifs.DialectVersion;
    import jcifs.ResolverType;
    import jcifs.SmbConstants;
    
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/internal/-UtilJvm.kt

    @JvmField
    internal val EMPTY_RESPONSE: ResponseBody = commonEmptyResponse
    
    /** GMT and UTC are equivalent for our purposes. */
    @JvmField
    internal val UTC: TimeZone = TimeZone.getTimeZone("GMT")!!
    
    internal fun threadFactory(
      name: String,
      daemon: Boolean,
    ): ThreadFactory =
      ThreadFactory { runnable ->
        Thread(runnable, name).apply {
          isDaemon = daemon
        }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon May 13 13:42:37 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  8. cmd/kube-apiserver/apiserver.go

    limitations under the License.
    */
    
    // APIServer is the main API server and master for the cluster.
    // It is responsible for serving the cluster management API.
    package main
    
    import (
    	"os"
    	_ "time/tzdata" // for timeZone support in CronJob
    
    	"k8s.io/component-base/cli"
    	_ "k8s.io/component-base/logs/json/register"          // for JSON log format registration
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 05 18:50:03 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/batch/v1beta1/generated.pb.go

    }
    
    func (m *CronJobSpec) MarshalToSizedBuffer(dAtA []byte) (int, error) {
    	i := len(dAtA)
    	_ = i
    	var l int
    	_ = l
    	if m.TimeZone != nil {
    		i -= len(*m.TimeZone)
    		copy(dAtA[i:], *m.TimeZone)
    		i = encodeVarintGenerated(dAtA, i, uint64(len(*m.TimeZone)))
    		i--
    		dAtA[i] = 0x42
    	}
    	if m.FailedJobsHistoryLimit != nil {
    		i = encodeVarintGenerated(dAtA, i, uint64(*m.FailedJobsHistoryLimit))
    		i--
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 40.2K bytes
    - Viewed (0)
  10. src/main/java/jcifs/SmbTreeHandle.java

         */
        @Override
        void close () throws CIFSException;
    
    
        /**
         * @return the tree is connected
         */
        boolean isConnected ();
    
    
        /**
         * @return server timezone offset
         * @throws CIFSException
         */
        long getServerTimeZoneOffset () throws CIFSException;
    
    
        /**
         * @return server reported domain name
         * @throws CIFSException
         */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 2K bytes
    - Viewed (0)
Back to top