Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 68 for logout (0.42 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsAccessFromGroovyDslIntegrationTest.groovy

                withProblem("Build file '${relativePath('a/build.gradle')}': line 3: Project ':a' cannot access 'myExtension' extension on another project ':b'")
            }
        }
    
        def "supports nested structure of build layout"() {
            settingsFile << """
                include ':a'
                include ':a:tests'
                include ':a:tests:integ-tests'
            """
            file("a/build.gradle") << ""
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/deadcode.go

    // Each element of the array is size bytes. The first 4 bytes is a
    // nameOff for the method name, and the next 4 bytes is a typeOff for
    // the function type.
    //
    // Conveniently this is the layout of both runtime.method and runtime.imethod.
    func (d *deadcodePass) decodeMethodSig(ldr *loader.Loader, arch *sys.Arch, symIdx loader.Sym, relocs *loader.Relocs, off, size, count int) []methodsig {
    	if cap(d.methodsigstmp) < count {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 14:52:41 UTC 2024
    - 19K bytes
    - Viewed (0)
  3. src/cmd/go/internal/help/helpdoc.go

    installed commands. If the GOBIN environment variable is
    set, commands are installed to the directory it names instead
    of DIR/bin. GOBIN must be an absolute path.
    
    Here's an example directory layout:
    
        GOPATH=/home/user/go
    
        /home/user/go/
            src/
                foo/
                    bar/               (go code in package bar)
                        x.go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/data.go

    			if toc := ldr.Lookup(".TOC.", i); toc != 0 {
    				ldr.SetSymValue(toc, tocAddr)
    			}
    		}
    	}
    
    	return order
    }
    
    // layout assigns file offsets and lengths to the segments in order.
    // Returns the file size containing all the segments.
    func (ctxt *Link) layout(order []*sym.Segment) uint64 {
    	var prev *sym.Segment
    	for _, seg := range order {
    		if prev == nil {
    			seg.Fileoff = uint64(HEADR)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/InProcessGradleExecuter.java

    import org.gradle.initialization.DefaultBuildRequestContext;
    import org.gradle.initialization.DefaultBuildRequestMetaData;
    import org.gradle.initialization.NoOpBuildEventConsumer;
    import org.gradle.initialization.layout.BuildLayoutFactory;
    import org.gradle.integtests.fixtures.FileSystemWatchingHelper;
    import org.gradle.integtests.fixtures.logging.GroupedOutputFixture;
    import org.gradle.internal.Factory;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  6. src/net/http/serve_test.go

    				_, _, line, _ := runtime.Caller(0)
    				lastLine <- line
    				<-exitHandler
    			})
    
    			if !tt.mustTimeout {
    				exitHandler <- true
    			}
    
    			logBuf := new(strings.Builder)
    			srvLog := log.New(logBuf, "", 0)
    			// When expecting to timeout, we'll keep the duration short.
    			dur := 20 * time.Millisecond
    			if !tt.mustTimeout {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/liveness/plive.go

    				}
    			}
    		}
    	}
    
    	// We must analyze the entry block first. The runtime assumes
    	// the function entry map is index 0. Conveniently, layout
    	// already ensured that the entry block is first.
    	if lv.f.Entry != lv.f.Blocks[0] {
    		lv.f.Fatalf("entry block must be first")
    	}
    
    	{
    		// Reserve an entry for function entry.
    		live := bitvec.New(nvars)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/build.gradle

        installationEnvProvider.gradleHomeDir.from(configurations.integTestDistributionRuntimeClasspath)
        installationEnvProvider.samplesdir = project.layout.buildDirectory.dir("working/samples/testing")
        jvmArgumentProviders.add(installationEnvProvider)
    
        // For unknown reason, this is set to 'sourceSet.getRuntimeClasspath()' in the 'org.gradle.samples' plugin
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 15:37:11 UTC 2024
    - 42K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        result_types.push_back(token.getType());
    
        ArrayAttr layout;  // filled in during the xla-adjust-layout pass
        auto data_and_token =
            rewriter.create<InfeedOp>(op.getLoc(), result_types, token,
                                      /*infeed_config=*/rewriter.getStringAttr(""),
                                      /*layout=*/layout);
    
        result_types.pop_back();  // remove the token type.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  10. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

                    addViolation(
                            problems,
                            Severity.WARNING,
                            Version.V20,
                            prefix + "layout",
                            repository.getId(),
                            "uses the unsupported value 'legacy', artifact resolution might fail.",
                            repository);
                }
            }
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 73.9K bytes
    - Viewed (0)
Back to top