Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for getUpdate (0.15 sec)

  1. okhttp/src/main/kotlin/okhttp3/Headers.kt

      /**
       * Returns the last value corresponding to the specified field parsed as an HTTP date, or null if
       * either the field is absent or cannot be parsed as a date.
       */
      fun getDate(name: String): Date? = get(name)?.toHttpDateOrNull()
    
      /**
       * Returns the last value corresponding to the specified field parsed as an HTTP date, or null if
       * either the field is absent or cannot be parsed as a date.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  2. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishBasicIntegTest.groovy

                    }
                    @Override
                    File getFile() {
                        return new File("customArtifact.jar")
                    }
                    @Override
                    Date getDate() {
                        return new Date()
                    }
                    @Override
                    TaskDependency getBuildDependencies() {
                        return new TaskDependency() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  3. platforms/software/signing/src/main/java/org/gradle/plugins/signing/Signature.java

        /**
         * The classifier of the signature artifact.
         *
         * @see #getClassifier()
         */
        private String classifier;
    
        /**
         * The date of the signature artifact.
         *
         * @see #getDate()
         */
        private Date date;
    
        private Callable<File> toSignGenerator;
    
        private Callable<String> classifierGenerator;
    
        @Nullable
        private Callable<String> nameGenerator;
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 12:20:43 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_conversions/scatter.h

          ConversionPatternRewriter& rewriter) const final {
        {
          OperandRange operands = scatter_op.getInputs();
          Value indices = scatter_op.getScatterIndices();
          OperandRange updates = scatter_op.getUpdates();
          if (operands.size() != 1 || updates.size() != 1) return failure();
    
          ShapedType operand_type = mlir::cast<ShapedType>(operands[0].getType());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  5. pkg/controller/disruption/disruption.go

    	stalePodDisruptionQueue   workqueue.TypedRateLimitingInterface[string]
    	stalePodDisruptionTimeout time.Duration
    
    	broadcaster record.EventBroadcaster
    	recorder    record.EventRecorder
    
    	getUpdater func() updater
    
    	clock clock.Clock
    }
    
    // controllerAndScale is used to return (controller, scale) pairs from the
    // controller finder functions.
    type controllerAndScale struct {
    	types.UID
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 36.1K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/http/NtlmHttpURLConnection.java

            try {
                handshake();
            } catch (IOException ex) { }
            return connection.getExpiration();
        }
    
        public long getDate() {
            try {
                handshake();
            } catch (IOException ex) { }
            return connection.getDate();
        }
    
        public long getLastModified() {
            try {
                handshake();
            } catch (IOException ex) { }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 20.4K bytes
    - Viewed (0)
  7. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishBasicIntegTest.groovy

                    }
    
                    @Override
                    File getFile() {
                        return new File("customArtifact.jar")
                    }
    
                    @Override
                    Date getDate() {
                        return new Date()
                    }
    
                    @Override
                    TaskDependency getBuildDependencies() {
                        return new TaskDependency() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  8. maven-repository-metadata/src/test/java/org/apache/maven/artifact/repository/metadata/MetadataTest.java

    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  9. src/main/java/jcifs/http/NtlmHttpURLConnection.java

    
        @Override
        public long getExpiration () {
            handshake();
            return this.connection.getExpiration();
        }
    
    
        @Override
        public long getDate () {
            handshake();
            return this.connection.getDate();
        }
    
    
        @Override
        public long getLastModified () {
            handshake();
            return this.connection.getLastModified();
        }
    
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 25.5K bytes
    - Viewed (0)
  10. src/runtime/runtime.go

    var godebugEnv atomic.Pointer[string] // set by parsedebugvars
    var godebugNewIncNonDefault atomic.Pointer[func(string) func()]
    
    //go:linkname godebug_setUpdate internal/godebug.setUpdate
    func godebug_setUpdate(update func(string, string)) {
    	p := new(func(string, string))
    	*p = update
    	godebugUpdate.Store(p)
    	godebugNotify(false)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 9.9K bytes
    - Viewed (0)
Back to top