Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 873 for fixwd (0.04 sec)

  1. .github/PULL_REQUEST_TEMPLATE.md

    - [ ] Ensure that tests pass locally: `./gradlew <changed-subproject>:quickTest`.
    
    ### Reviewing cheatsheet
    
    Before merging the PR, comments starting with 
    - ❌ ❓**must** be fixed
    - 🤔 💅 **should** be fixed
    - 💭 **may** be fixed
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 13 22:36:19 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. src/cmd/fix/gotypes.go

    	date: "2015-07-16",
    	f:    gotypes,
    	desc: `Change imports of golang.org/x/tools/go/{exact,types} to go/{constant,types}`,
    }
    
    func gotypes(f *ast.File) bool {
    	fixed := fixGoTypes(f)
    	if fixGoExact(f) {
    		fixed = true
    	}
    	return fixed
    }
    
    func fixGoTypes(f *ast.File) bool {
    	return rewriteImport(f, "golang.org/x/tools/go/types", "go/types")
    }
    
    func fixGoExact(f *ast.File) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/quantization/quantization_info.proto

      message Metadata {
        //  Bit number of fixed-point data the target kernel supports.
        int32 num_bits = 1;
        //  The quantized axis index if it is per-axis quantization.
        int32 quantize_axis = 2;
        // The minimum allowed value of the fixed-point data range.
        // This can also be used to derive the sign of storage type.
        int32 range_min = 3;
        // The minimum allowed value of the fixed-point data range.
        int32 range_max = 4;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 08 03:45:04 UTC 2019
    - 2.3K bytes
    - Viewed (0)
  4. src/cmd/fix/main.go

    		file = newFile
    		fmt.Fprintf(&fixlog, " fmt")
    	}
    
    	// Apply all fixes to file.
    	newFile := file
    	fixed := false
    	for _, fix := range fixes {
    		if allowed != nil && !allowed[fix.name] {
    			continue
    		}
    		if fix.disabled && !force[fix.name] {
    			continue
    		}
    		if fix.f(newFile) {
    			fixed = true
    			fmt.Fprintf(&fixlog, " %s", fix.name)
    
    			// AST changed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  5. src/syscall/asm_plan9_amd64.s

    	MOVQ	$SYS_ERRSTR, BP
    	SYSCALL
    	CALL	runtime·exitsyscall(SB) // call via ABI wrapper, ensuring ABIInternal fixed registers are set
    	MOVQ	sysargs-160(SP), AX
    	MOVQ	AX, errbuf-168(SP)
    	CALL	runtime·gostring(SB)
    	LEAQ	str-160(SP), SI
    	JMP	copyresult3
    
    ok3:
    	CALL	runtime·exitsyscall(SB) // call via ABI wrapper, ensuring ABIInternal fixed registers are set
    	LEAQ	·emptystring(SB), SI
    
    copyresult3:
    	LEAQ	err+48(FP), DI
    
    	CLD
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 17 01:29:17 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/repositories/DefaultFlatDirArtifactRepositoryTest.groovy

            repo.dirs('a', 'b')
            same.dirs('a', 'b')
            different.dirs('a')
    
            and:
            _ * fileCollectionFactory.resolving(['a', 'b']) >> TestFiles.fixed(new File('a'), new File('b'))
            _ * fileCollectionFactory.resolving(['a']) >> TestFiles.fixed(new File('a'))
    
            expect:
            same.descriptor.id == repo.descriptor.id
            different.descriptor.id != repo.descriptor.id
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  7. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/RemovePreviousOutputsStepTest.groovy

                visitor.visitOutputProperty("dir", TreeType.DIRECTORY, UnitOfWork.OutputFileValueSupplier.fromStatic(outputs.dir, TestFiles.fixed(outputs.dir)))
                visitor.visitOutputProperty("file", TreeType.FILE, UnitOfWork.OutputFileValueSupplier.fromStatic(outputs.file, TestFiles.fixed(outputs.file)))
            }
            _ * context.previousExecutionState >> Optional.of(previousExecutionState)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  8. guava/src/com/google/common/base/Ticker.java

     * the License.
     */
    
    package com.google.common.base;
    
    import com.google.common.annotations.GwtCompatible;
    
    /**
     * A time source; returns a time value representing the number of nanoseconds elapsed since some
     * fixed but arbitrary point in time. Note that most users should use {@link Stopwatch} instead of
     * interacting with this class directly.
     *
     * <p><b>Warning:</b> this interface can only be used to measure elapsed time, not wall time.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 23 23:27:53 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  9. src/main/webapp/css/style.css

    }
    
    .form-control {
    	border-radius: 0px;
    }
    
    legend{
    	display: none;
    }
    
    /* header */
    
    #searchOptions {
    	position: fixed;
    	z-index: 10;
    }
    
    #searchOptions .container {
    	width: 500px;
    	max-width: 100%;
    	height: 100%;
    	overflow: auto;
    	position: fixed;
    	top: 0;
    	bottom: 0;
    	right: -500px;
    	padding-top: 72px;
    	padding-bottom: 20px;
    	color: #fff;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Jun 02 11:39:35 UTC 2022
    - 2K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/OrElseFixedValueProvider.java

            this.provider = provider;
            this.fallbackValue = fallbackValue;
        }
    
        @Override
        protected String toStringNoReentrance() {
            return String.format("or(%s, fixed(%s))", provider, fallbackValue);
        }
    
        @Nullable
        @Override
        public Class<T> getType() {
            return Cast.uncheckedCast(provider.getType());
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 17 23:22:42 UTC 2024
    - 2.6K bytes
    - Viewed (0)
Back to top