Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 4,102 for know (0.04 sec)

  1. pkg/util/coverage/fake_test_deps.go

    //nolint:unused // U1000 see comment above, we know it's unused normally.
    func (fakeTestDeps) StartCPUProfile(io.Writer) error {
    	return nil
    }
    
    //nolint:unused // U1000 see comment above, we know it's unused normally.
    func (fakeTestDeps) StopCPUProfile() {}
    
    //nolint:unused // U1000 see comment above, we know it's unused normally.
    func (fakeTestDeps) StartTestLog(io.Writer) {}
    
    //nolint:unused // U1000 see comment above, we know it's unused normally.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 15:31:22 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/UnavailablePlatformToolProviderTest.groovy

            def provider = new UnavailablePlatformToolProvider(Stub(OperatingSystemInternal), new ToolChainAvailability().unavailable("don't know how to build this thing"))
    
            expect:
            def formatter = new TreeFormatter()
            provider.explain(formatter)
            formatter.toString() == "don't know how to build this thing"
        }
    
        def "tool lookup returns same failure"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/ProcessFixture.groovy

            }
            if (!(OperatingSystem.current().unix || OperatingSystem.current().windows)) {
                throw new RuntimeException("This implementation does not know how to forcefully kill a process on os: " + OperatingSystem.current())
            }
            execute(killArgs(pid, killTree), killScript(pid, killTree))
        }
    
        // Only supported on *nix platforms
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_go_version_missing.txt

    # go.mod file. Otherwise, we don't actually know whether the module was written
    # against Go 1.11 or 1.16. We would have to update the go.mod file to clarify,
    # and as of Go 1.16 we don't update the go.mod file by default.
    #
    # If we set -mod=vendor explicitly, we shouldn't apply the Go 1.14
    # consistency check, because — again — we don't know whether we're in a 1.11
    # module or a bad-script-edited 1.16 module.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 22 16:11:33 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/modulecache/ModuleMetadataCacheEntrySerializer.java

                    encoder.writeBoolean(value.isChanging);
                    encoder.writeLong(value.createTimestamp);
                    break;
                default:
                    throw new IllegalArgumentException("Don't know how to serialize meta-data entry: " + value);
            }
        }
    
        @Override
        public ModuleMetadataCacheEntry read(Decoder decoder) throws Exception {
            byte type = decoder.readByte();
            switch (type) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  6. docs/en/docs/tutorial/dependencies/classes-as-dependencies.md

        ```
    
    But then we get a `dict` in the parameter `commons` of the *path operation function*.
    
    And we know that editors can't provide a lot of support (like completion) for `dict`s, because they can't know their keys and value types.
    
    We can do better...
    
    ## What makes a dependency
    
    Up to now you have seen dependencies declared as functions.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  7. src/internal/types/testdata/check/init0.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // initialization cycles
    
    package init0
    
    // initialization cycles (we don't know the types)
    const (
    	s0 /* ERROR "initialization cycle: s0 refers to itself" */ = s0
    
    	x0 /* ERROR "initialization cycle for x0" */ = y0
    	y0 = x0
    
    	a0 = b0
    	b0 /* ERROR "initialization cycle for b0" */ = c0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:25 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/slog/slog.go

    				case isAttr(t):
    					pos = key
    				case types.IsInterface(t):
    					// As we do not do dataflow, we do not know what the dynamic type is.
    					// But we might be able to learn enough to make a decision.
    					if types.AssignableTo(stringType, t) {
    						// t must be an empty interface. So it can also be an Attr.
    						// We don't know enough to make an assumption.
    						pos = unknown
    						continue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/JavaCompileSpec.java

        /**
         * Classes to compile are all classes that we know from Java sources that will be compiled.
         * These classes are deleted before a compilation and are not passed to Java compiler (their sources are passed to a compiler).
         * We only need them in {@link CompilationClassBackupService} so we know what files don't need a backup.
         */
        Set<String> getClassesToCompile();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 19 13:38:58 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  10. guava/src/com/google/common/util/concurrent/ExecutionSequencer.java

         *   <li>If this field's value is some other thread object, we know that it's not our thread.
         *   <li>If this field's value == null because it originally belonged to another thread and that
         *       thread cleared it, we still know that it's not associated with our thread
         *   <li>If this field's value == null because it was associated with our thread and was
         *       cleared, we know that we're not executing inline any more
         * </ul>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 22.1K bytes
    - Viewed (0)
Back to top