Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for firstterm (0.49 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. src/net/listen_test.go

    			tt.xerr = nil
    		}
    		var firstErr, secondErr error
    		for i := 0; i < 5; i++ {
    			lns, err := newDualStackListener()
    			if err != nil {
    				t.Fatal(err)
    			}
    			port := lns[0].port()
    			for _, ln := range lns {
    				ln.Close()
    			}
    			var ln1 Listener
    			ln1, firstErr = Listen(tt.network1, JoinHostPort(tt.address1, port))
    			if firstErr != nil {
    				continue
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 20.5K 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. 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)
  5. 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)
  6. src/cmd/go/internal/vcweb/vcweb.go

    		return nil, err
    	}
    
    	return s, nil
    }
    
    func (s *Server) Close() error {
    	var firstErr error
    	for _, h := range s.vcsHandlers {
    		if c, ok := h.(io.Closer); ok {
    			if closeErr := c.Close(); firstErr == nil {
    				firstErr = closeErr
    			}
    		}
    	}
    	return firstErr
    }
    
    // gitConfig contains a ~/.gitconfg file that attempts to provide
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 12.1K 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/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)
  9. 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)
  10. src/cmd/compile/internal/types2/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
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.3K bytes
    - Viewed (0)
Back to top