Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,309 for MODIFIED (0.12 sec)

  1. src/net/http/cookiejar/jar.go

    	if path == "" {
    		path = "/"
    	}
    
    	modified := false
    	var selected []entry
    	for id, e := range submap {
    		if e.Persistent && !e.Expires.After(now) {
    			delete(submap, id)
    			modified = true
    			continue
    		}
    		if !e.shouldSend(https, host, path) {
    			continue
    		}
    		e.LastAccess = now
    		submap[id] = e
    		selected = append(selected, e)
    		modified = true
    	}
    	if modified {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15K bytes
    - Viewed (0)
  2. releasenotes/notes/44345.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: installation
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 18 04:05:51 UTC 2023
    - 201 bytes
    - Viewed (0)
  3. releasenotes/notes/48266.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: installation
    issue:
    - 48241
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 12 16:30:54 UTC 2023
    - 183 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/dsl/org.gradle.api.tasks.incremental.InputFile.xml

                <thead>
                    <tr>
                        <td>Name</td>
                    </tr>
                </thead>
                <tr><td>file</td></tr>
                <tr><td>added</td></tr>
                <tr><td>modified</td></tr>
                <tr><td>removed</td></tr>
            </table>
        </section>
        <section>
            <title>Methods</title>
            <table>
                <thead>
                    <tr>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 593 bytes
    - Viewed (0)
  5. pkg/controller/volume/persistentvolume/pv_controller_base.go

    	// copy of the volume and sometimes return a ref to the original
    	claimClone := claim.DeepCopy()
    	logger := klog.FromContext(ctx)
    	modified := updateMigrationAnnotations(logger, ctrl.csiMigratedPluginManager, ctrl.translator, claimClone.Annotations, true)
    	if !modified {
    		return claimClone, nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 29.5K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/local/model/LocalComponentGraphResolveState.java

        /**
         * We currently allow a configuration that has been partially observed for resolution to be modified
         * in a beforeResolve callback.
         *
         * To reduce the number of instances of root component metadata we create, we mark all configurations
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  7. docs/debugging/s3-check-md5/main.go

    	flag.BoolVar(&versions, "versions", false, "Verify all versions")
    	flag.BoolVar(&insecure, "insecure", false, "Disable TLS verification")
    	flag.StringVar(&minModTimeStr, "modified-since", "", "Specify a minimum object last modified time, e.g.: 2023-01-02T15:04:05Z")
    	flag.Parse()
    
    	if endpoint == "" {
    		log.Fatalln("Endpoint is not provided")
    	}
    
    	if accessKey == "" {
    		log.Fatalln("Access key is not provided")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Feb 17 01:15:57 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  8. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/DefaultModelResolver.java

            }
    
            return new ArtifactModelSource(pomArtifact.getPath(), groupId, artifactId, version);
        }
    
        @Override
        public ModelSource resolveModel(final Parent parent, final AtomicReference<Parent> modified)
                throws UnresolvableModelException {
            try {
                final Artifact artifact =
                        new DefaultArtifact(parent.getGroupId(), parent.getArtifactId(), "", "pom", parent.getVersion());
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  9. src/crypto/internal/edwards25519/scalar_alias_test.go

    			return false
    		}
    
    		// Test aliasing the argument and the receiver.
    		if out := f(&v1, &v1); out != &v1 || v1 != v || !isReduced(out.Bytes()) {
    			return false
    		}
    
    		// Ensure the arguments was not modified.
    		return x == x1
    	}
    
    	checkAliasingTwoArgs := func(f func(v, x, y *Scalar) *Scalar, v, x, y Scalar) bool {
    		x1, y1, v1 := x, y, Scalar{}
    
    		// Calculate a reference f(x, y) without aliasing.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 17:26:17 UTC 2023
    - 3K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/InstrumentingClassLoader.java

         * (the agent) will catch all throwables thrown by this method and forward them to {@link #transformFailed(String, Throwable)}.
         * <p>
         * The {@code classfileBuffer} may be already modified by other Java agents.
         * <p>
         * This method may be called concurrently in multiple threads.
         *
         * @param className the name of the class being loaded (in the internal form, e.g. {@code java/util/List})
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top