Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 38 for startPos (0.65 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/AbstractContinuousIntegrationTest.groovy

                return
            }
            int startPos = 0
            int endPos = findEndIndexOfCurrentBuild(out, startPos)
            while (startPos < out.length()) {
                if (endPos == -1) {
                    endPos = out.length()
                }
                results << createExecutionResult(out.substring(startPos, endPos), err)
                startPos = endPos
                endPos = findEndIndexOfCurrentBuild(out, startPos)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/io/ClassTraversalUtil.java

            final int startPos = prefix.length();
            for (final JarEntry entry : iterable(jarFile.entries())) {
                final String entryName = entry.getName().replace('\\', '/');
                if (entryName.startsWith(prefix) && entryName.endsWith(CLASS_SUFFIX)) {
                    final String className = entryName.substring(startPos, entryName.length() - CLASS_SUFFIX.length()).replace('/', '.');
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  3. src/cmd/internal/dwarf/dwarf.go

    	// DW_AT_inlined value
    	putattr(ctxt, s.Absfn, abbrev, DW_FORM_data1, DW_CLS_CONSTANT, int64(DW_INL_inlined), nil)
    
    	// TODO(mdempsky): Shouldn't we write out StartPos.FileIndex() too?
    	putattr(ctxt, s.Absfn, abbrev, DW_FORM_udata, DW_CLS_CONSTANT, int64(s.StartPos.RelLine()), nil)
    
    	var ev int64
    	if s.External {
    		ev = 1
    	}
    	putattr(ctxt, s.Absfn, abbrev, DW_FORM_flag, DW_CLS_FLAG, ev, 0)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 15:23:18 UTC 2024
    - 43K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/typexpr.go

    	// to interface methods. Delay this check to the end of type-checking.
    	check.later(func() {
    		if t, _ := under(typ).(*Interface); t != nil {
    			pos := syntax.StartPos(e)
    			tset := computeInterfaceTypeSet(check, pos, t) // TODO(gri) is this the correct position?
    			if !tset.IsMethodSet() {
    				if tset.comparable {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/resolver.go

    		// The package identifier denotes the current package,
    		// but there is no corresponding package object.
    		check.recordDef(file.PkgName, nil)
    
    		fileScope := NewScope(pkg.scope, syntax.StartPos(file), syntax.EndPos(file), check.filename(fileNo))
    		fileScopes = append(fileScopes, fileScope)
    		check.recordScope(file, fileScope)
    
    		// determine file directory, necessary to resolve imports
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 14:10:44 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/call.go

    		tparams := typ.TypeParams().list()
    		if i, err := check.verify(pos, tparams, targs, check.context()); err != nil {
    			// best position for error reporting
    			pos := pos
    			if i < len(xlist) {
    				pos = syntax.StartPos(xlist[i])
    			}
    			check.softErrorf(pos, InvalidTypeArg, "%s", err)
    		} else {
    			check.mono.recordInstance(check.pkg, pos, tparams, targs, xlist)
    		}
    	}).describef(pos, "verify instantiation")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  7. src/net/smtp/smtp.go

    	}
    	c.ext = ext
    	return err
    }
    
    // StartTLS sends the STARTTLS command and encrypts all further communication.
    // Only servers that advertise the STARTTLS extension support this function.
    func (c *Client) StartTLS(config *tls.Config) error {
    	if err := c.hello(); err != nil {
    		return err
    	}
    	_, _, err := c.cmd(220, "STARTTLS")
    	if err != nil {
    		return err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/mutating/plugin_test.go

    		b.Log("to run a standalone server, run:")
    		b.Log("go run k8s.io/apiserver/pkg/admission/plugin/webhook/testing/main/main.go")
    		testServer := webhooktesting.NewTestServer(b)
    		testServer.StartTLS()
    		defer testServer.Close()
    		testServerURL = testServer.URL
    	}
    
    	serverURL, err := url.ParseRequestURI(testServerURL)
    	if err != nil {
    		b.Fatalf("this should never happen? %v", err)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:52 UTC 2024
    - 11K bytes
    - Viewed (0)
  9. src/net/http/httptest/server.go

    	// NewUnstartedServer and calling Server.StartTLS.
    	EnableHTTP2 bool
    
    	// TLS is the optional TLS configuration, populated with a new config
    	// after TLS is started. If set on an unstarted server before StartTLS
    	// is called, existing fields are copied into the new config.
    	TLS *tls.Config
    
    	// Config may be changed after calling NewUnstartedServer and
    	// before Start or StartTLS.
    	Config *http.Server
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 17:26:10 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/validating/plugin_test.go

    		b.Log("to run a standalone server, run:")
    		b.Log("go run k8s.io/apiserver/pkg/admission/plugin/webhook/testing/main/main.go")
    		testServer := webhooktesting.NewTestServer(b)
    		testServer.StartTLS()
    		defer testServer.Close()
    		testServerURL = testServer.URL
    	}
    
    	objectInterfaces := webhooktesting.NewObjectInterfacesForTest()
    
    	serverURL, err := url.ParseRequestURI(testServerURL)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:52 UTC 2024
    - 11.9K bytes
    - Viewed (0)
Back to top