Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for firstterm (0.14 sec)

  1. platforms/documentation/docs/src/docs/dsl/dsl.xml

            <para>First, Gradle scripts are <firstterm>configuration scripts</firstterm>. As the script executes, it
                configures an object of a particular type. For example, as a build script executes, it configures an
                object of type <apilink class="org.gradle.api.Project"/>. This object is called the <firstterm>delegate object</firstterm>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 15:00:02 UTC 2024
    - 34.7K bytes
    - Viewed (0)
  2. tests/integration/security/authz_test.go

    func (tsts authzTests) RunAll(t framework.TestContext) {
    	t.Helper()
    
    	firstTest := tsts[0]
    	if len(tsts) == 1 {
    		// Testing a single port. Just run a single test.
    		testName := fmt.Sprintf("%s%s(%s)/%s", firstTest.prefix, firstTest.opts.HTTP.Path, firstTest.allow, firstTest.opts.Port.Name)
    		t.NewSubTest(testName).Run(func(t framework.TestContext) {
    			firstTest.BuildAndRun(t)
    		})
    		return
    	}
    
    	tsts.checkValid()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 23:36:51 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  3. src/time/zoneinfo_read.go

    func loadLocation(name string, sources []string) (z *Location, firstErr error) {
    	for _, source := range sources {
    		zoneData, err := loadTzinfo(name, source)
    		if err == nil {
    			if z, err = LoadLocationFromTZData(name, zoneData); err == nil {
    				return z, nil
    			}
    		}
    		if firstErr == nil && err != syscall.ENOENT {
    			firstErr = err
    		}
    	}
    	if loadFromEmbeddedTZData != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/errors.go

    		msg = "\t" + msg
    	}
    
    	e := Error{
    		Pos:  pos,
    		Msg:  stripAnnotations(msg),
    		Full: msg,
    		Soft: soft,
    		Code: code,
    	}
    
    	if check.firstErr == nil {
    		check.firstErr = e
    	}
    
    	f := check.conf.Error
    	if f == nil {
    		panic(bailout{}) // record first error and exit
    	}
    	f(e)
    }
    
    const (
    	invalidArg = "invalid argument: "
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 22:06:18 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  5. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/AbstractJUnitTestExecutionIntegrationTest.groovy

                        events "passed", "skipped", "failed"
                    }
                }
            """.stripIndent()
    
            and:
            file("src/test/java/FirstTest.java") << """
                ${testFrameworkImports}
                public class FirstTest {
                    @Test public void test() {}
                }
            """.stripIndent()
    
            file("src/test/java/SecondTest.java") << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:33 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  6. src/time/zoneinfo.go

    		env, _ := syscall.Getenv("ZONEINFO")
    		zoneinfo = &env
    	})
    	var firstErr error
    	if *zoneinfo != "" {
    		if zoneData, err := loadTzinfoFromDirOrZip(*zoneinfo, name); err == nil {
    			if z, err := LoadLocationFromTZData(name, zoneData); err == nil {
    				return z, nil
    			}
    			firstErr = err
    		} else if err != syscall.ENOENT {
    			firstErr = err
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:30 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  7. src/net/dial.go

    			}
    		}
    
    		c, err := sd.dialSingle(dialCtx, ra)
    		if err == nil {
    			return c, nil
    		}
    		if firstErr == nil {
    			firstErr = err
    		}
    	}
    
    	if firstErr == nil {
    		firstErr = &OpError{Op: "dial", Net: sd.network, Source: nil, Addr: nil, Err: errMissingAddress}
    	}
    	return nil, firstErr
    }
    
    // dialSingle attempts to establish and returns a single connection to
    // the destination address.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  8. src/go/types/errors.go

    		// to the position (pos) in the original expression.
    		span := spanOf(check.errpos)
    		e.Pos = span.pos
    		e.go116start = span.start
    		e.go116end = span.end
    	}
    
    	if check.firstErr == nil {
    		check.firstErr = e
    	}
    
    	f := check.conf.Error
    	if f == nil {
    		panic(bailout{}) // record first error and exit
    	}
    	f(e)
    }
    
    const (
    	invalidArg = "invalid argument: "
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 22:06:18 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  9. src/go/types/check.go

    	unionTypeSets map[*Union]*_TypeSet      // computed type sets for union types
    	mono          monoGraph                 // graph for detecting non-monomorphizable instantiation loops
    
    	firstErr error                 // first error encountered
    	methods  map[*TypeName][]*Func // maps package scope type names to associated non-blank (non-interface) methods
    	untyped  map[ast.Expr]exprInfo // map of expressions without final type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  10. pkg/controller/controller_utils.go

    	if len(taints) == 0 {
    		return nil
    	}
    	firstTry := true
    	return clientretry.RetryOnConflict(UpdateTaintBackoff, func() error {
    		var err error
    		var oldNode *v1.Node
    		// First we try getting node from the API server cache, as it's cheaper. If it fails
    		// we get it from etcd to be sure to have fresh data.
    		option := metav1.GetOptions{}
    		if firstTry {
    			option.ResourceVersion = "0"
    			firstTry = false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 12 15:34:44 UTC 2024
    - 47.6K bytes
    - Viewed (0)
Back to top