Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 969 for realtime (0.2 sec)

  1. pkg/config/analysis/analyzers/testdata/relative-envoy-filter-operation.yaml

    # If the patch operation is INSERT_FIRST or priority is set, then the analyzer will not do anything
    apiVersion: networking.istio.io/v1alpha3
    kind: EnvoyFilter
    metadata:
      name: test-relative-1
      namespace: bookinfo
    spec:
      workloadSelector:
        labels:
          app: reviews1
      configPatches:
        # The first patch adds the Lua filter to the listener/http connection manager
      - applyTo: HTTP_FILTER
        match:
          context: SIDECAR_INBOUND
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 31 19:38:42 UTC 2022
    - 6.1K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/SmbComNTCreateAndXResponse.java

            bufferIndex += 4;
            creationTime = readTime( buffer, bufferIndex );
            bufferIndex += 8;
            lastAccessTime = readTime( buffer, bufferIndex );
            bufferIndex += 8;
            lastWriteTime = readTime( buffer, bufferIndex );
            bufferIndex += 8;
            changeTime = readTime( buffer, bufferIndex );
            bufferIndex += 8;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 3.6K bytes
    - Viewed (0)
  3. maven-core/src/test/resources/project-dynamism/pom-relative.xml

    Hervé Boutemy <******@****.***> 1573303514 +0100
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Nov 09 12:45:14 UTC 2019
    - 1.1K bytes
    - Viewed (0)
  4. maven-model-builder/src/test/resources/dag.txt

    quarkus/extensions/resteasy-reactive/rest-client-reactive-jackson/deployment/pom.xml
    	quarkus/extensions/resteasy-reactive/quarkus-resteasy-reactive-jackson-common/deployment/pom.xml
    	quarkus/extensions/resteasy-reactive/rest-client-reactive/deployment/pom.xml
    	quarkus/extensions/resteasy-reactive/rest-client-reactive-jackson/runtime/pom.xml
    	quarkus/extensions/resteasy-reactive/quarkus-resteasy-reactive-jackson/deployment/pom.xml
    	quarkus/test-framework/junit5-internal/pom.xml
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jan 15 16:49:26 UTC 2024
    - 224K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/smb2/create/Smb2CloseResponse.java

            bufferIndex += 4; // Reserved
            this.creationTime = SMBUtil.readTime(buffer, bufferIndex);
            bufferIndex += 8;
            this.lastAccessTime = SMBUtil.readTime(buffer, bufferIndex);
            bufferIndex += 8;
            this.lastWriteTime = SMBUtil.readTime(buffer, bufferIndex);
            bufferIndex += 8;
            this.changeTime = SMBUtil.readTime(buffer, bufferIndex);
            bufferIndex += 8;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 5.5K bytes
    - Viewed (0)
  6. pkg/volume/util/fsquota/quota_linux_test.go

    	"k8s.io/kubernetes/pkg/volume/util/fsquota/common"
    )
    
    const dummyMountData = `sysfs /sys sysfs rw,nosuid,nodev,noexec,relatime 0 0
    proc /proc proc rw,nosuid,nodev,noexec,relatime 0 0
    devtmpfs /dev devtmpfs rw,nosuid,size=6133536k,nr_inodes=1533384,mode=755 0 0
    tmpfs /tmp tmpfs rw,nosuid,nodev 0 0
    /dev/sda1 /boot ext4 rw,relatime 0 0
    /dev/mapper/fedora-root / ext4 rw,noatime 0 0
    /dev/mapper/fedora-home /home ext4 rw,noatime 0 0
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/smb1/Trans2FindFirst2Response.java

                e.fileIndex = readInt4( buffer, bufferIndex + 4 );
                e.creationTime = readTime( buffer, bufferIndex + 8 );
        //      e.lastAccessTime = readTime( buffer, bufferIndex + 16 );
                e.lastWriteTime = readTime( buffer, bufferIndex + 24 );
        //      e.changeTime = readTime( buffer, bufferIndex + 32 );
                e.endOfFile = readInt8( buffer, bufferIndex + 40 );
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 8.5K bytes
    - Viewed (0)
  8. cmd/bucket-metadata_gen.go

    			z.EncryptionConfigUpdatedAt, err = dc.ReadTime()
    			if err != nil {
    				err = msgp.WrapError(err, "EncryptionConfigUpdatedAt")
    				return
    			}
    		case "TaggingConfigUpdatedAt":
    			z.TaggingConfigUpdatedAt, err = dc.ReadTime()
    			if err != nil {
    				err = msgp.WrapError(err, "TaggingConfigUpdatedAt")
    				return
    			}
    		case "QuotaConfigUpdatedAt":
    			z.QuotaConfigUpdatedAt, err = dc.ReadTime()
    			if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 25 05:52:39 UTC 2023
    - 22.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/wait/timer.go

    func (t *fixedTimer) Next() {
    	// no-op for fixed timers
    }
    func (t *fixedTimer) Stop() {
    	if t.t == nil {
    		return
    	}
    	t.t.Stop()
    	t.t = nil
    }
    
    var (
    	// RealTimer can be passed to methods that need a clock.Timer.
    	RealTimer = clock.RealClock{}.NewTimer
    )
    
    var (
    	// internalClock is used for test injection of clocks
    	internalClock = clock.RealClock{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 19:14:11 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/util/SMBUtil.java

            dst[ ++dstIndex ] = (byte) ( val >>= 8 );
            dst[ ++dstIndex ] = (byte) ( val >>= 8 );
            dst[ ++dstIndex ] = (byte) ( val >> 8 );
        }
    
    
        public static long readTime ( byte[] src, int srcIndex ) {
            int low = readInt4(src, srcIndex);
            int hi = readInt4(src, srcIndex + 4);
            long t = ( (long) hi << 32L ) | ( low & 0xFFFFFFFFL );
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 5K bytes
    - Viewed (0)
Back to top