Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,838 for move (0.16 sec)

  1. src/cmd/compile/internal/types/alg.go

    	ANOALG         // implies ANOEQ, and in addition has a part that is marked Noalg
    	AMEM           // Type can be compared/hashed as regular memory.
    	AMEM0          // Specific subvariants of AMEM (TODO: move to ../reflectdata?)
    	AMEM8
    	AMEM16
    	AMEM32
    	AMEM64
    	AMEM128
    	ASTRING
    	AINTER
    	ANILINTER
    	AFLOAT32
    	AFLOAT64
    	ACPLX64
    	ACPLX128
    	ASPECIAL // Type needs special comparison/hashing functions.
    )
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 15:30:00 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/build.gradle.kts

        implementation(libs.groovyJson)
        implementation(libs.guava)
        implementation(libs.slf4jApi)
    
        runtimeOnly(project(":composite-builds"))
        runtimeOnly(project(":resources-http"))
        // TODO - move the isolatable serializer to model-core to live with the isolatable infrastructure
        runtimeOnly(project(":workers"))
    
        runtimeOnly(libs.kotlinReflect)
    
        testImplementation(projects.io)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/IdentityCacheStep.java

                    emitExecuteDeferredProgressDetails(work, context.getIdentity(), maybeExecutedResult);
                    return maybeExecutedResult.getResult();
                });
            }
        }
    
        // TODO: Move this logic in a step around IdentityCacheStep
        private <T> void emitExecuteDeferredProgressDetails(UnitOfWork work, Identity identity, IdentityCacheResult<T> cacheResult) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 16:30:23 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java

                                        // ignore
                                    }
                                    Files.move(path, newPath);
                                    logger.info("Move {} to {}", path, newPath);
                                } catch (final IOException e) {
                                    logger.warn("Failed to move {}", path, e);
                                }
                            }
                        }
                    });
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/shift/shift.go

    	dead := make(map[ast.Node]bool)
    	nodeFilter := []ast.Node{
    		(*ast.IfStmt)(nil),
    		(*ast.SwitchStmt)(nil),
    	}
    	inspect.Preorder(nodeFilter, func(n ast.Node) {
    		// TODO(adonovan): move updateDead into this file.
    		updateDead(pass.TypesInfo, dead, n)
    	})
    
    	nodeFilter = []ast.Node{
    		(*ast.AssignStmt)(nil),
    		(*ast.BinaryExpr)(nil),
    	}
    	inspect.Preorder(nodeFilter, func(node ast.Node) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/TransformBackedProvider.java

     *
     * <p>This provider checks that the contents of value have been built prior to running the transform, as the transform may use the content.
     * This check should move further upstream in the future, closer to the producer of the content.</p>
     *
     * @see ProviderInternal for a discussion of the "value" and "value contents".
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 17 23:22:41 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  7. maven-artifact/src/main/java/org/apache/maven/artifact/versioning/VersionRange.java

                        }
                    } else {
                        // move on to next in r1
                        if (i1.hasNext()) {
                            res1 = i1.next();
                        } else {
                            done = true;
                        }
                    }
                } else {
                    // move on to next in r2
                    if (i2.hasNext()) {
                        res2 = i2.next();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 07:40:37 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  8. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/workspace/impl/CacheBasedImmutableWorkspaceProvider.java

                // We don't need to lock the cache for immutable workspaces
                // as we are using unique temporary workspaces to run work in
                // and move them atomically into the cache
                // TODO Should use a read-write lock on the cache's base directory for cleanup, though
                .withInitialLockMode(FileLockManager.LockMode.None)
                .open();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:51:31 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  9. platforms/core-execution/build-cache-local/src/test/groovy/org/gradle/caching/local/internal/DirectoryBuildCacheTest.groovy

            }
    
            then:
            1 * fileAccessTracker.markAccessed(cachedFile)
    
            // Note that we don't know which variant of the file ended up in the cache,
            // as `Files.move()` and `File.renameTo()` can either fail or replace the
            // already existing file; it's up to the implementation.
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 07 14:32:44 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  10. src/cmd/vendor/rsc.io/markdown/heading.go

    	}
    	buf.WriteByte(' ')
    	// The prefix has already been printed for this line of text.
    	s.prefix = ""
    	b.Text.printMarkdown(buf, s)
    	if b.ID != "" {
    		// A heading text is a block, so it ends in a newline. Move the newline
    		// after the ID.
    		buf.Truncate(buf.Len() - 1)
    		fmt.Fprintf(buf, " {#%s}\n", b.ID)
    	}
    }
    
    func newATXHeading(p *parseState, s line) (line, bool) {
    	peek := s
    	var n int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 3.6K bytes
    - Viewed (0)
Back to top