Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 365 for regular (0.15 sec)

  1. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/FilePropertyIntegrationTest.groovy

    custom.prop = file("foo")
    custom.prop.set((File)null)
    assert custom.prop.getOrNull() == null
    
    """
    
            expect:
            succeeds()
        }
    
        def "can set regular file property value from DSL using a value or a provider"() {
            given:
            buildFile """
    class SomeExtension {
        final RegularFileProperty prop
    
        @javax.inject.Inject
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 24.7K bytes
    - Viewed (0)
  2. src/runtime/HACKING.md

    [too] clever." The performance of the runtime matters, but its
    robustness matters more.
    
    Unmanaged memory
    ================
    
    In general, the runtime tries to use regular heap allocation. However,
    in some cases the runtime must allocate objects outside of the garbage
    collected heap, in *unmanaged memory*. This is necessary if the
    objects are part of the memory manager itself or if they must be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  3. src/regexp/onepass.go

    // A onePassProg is a compiled one-pass regular expression program.
    // It is the same as syntax.Prog except for the use of onePassInst.
    type onePassProg struct {
    	Inst   []onePassInst
    	Start  int // index of start instruction
    	NumCap int // number of InstCapture insts in re
    }
    
    // A onePassInst is a single instruction in a one-pass regular expression program.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/internal/connection/RouteSelectorTest.kt

        dns[uriHost] = dns.allocate(numberOfAddresses)
    
        // Extract the regular sequence of routes from selector.
        val selection1 = routeSelector.next()
        val regularRoutes = selection1.routes
    
        // Check that we do indeed have more than one route.
        assertThat(regularRoutes.size).isEqualTo(numberOfAddresses)
        // Add first regular route as failed.
        routeDatabase.failed(regularRoutes[0])
        // Reset selector
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Mar 06 17:33:38 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  5. platforms/core-execution/build-cache/src/main/java/org/gradle/caching/internal/controller/DefaultBuildCacheController.java

                    } else {
                        if (type == TreeType.FILE && treeSnapshot.getType() != FileType.RegularFile) {
                            throw new IllegalStateException(String.format("Only a regular file should be produced by unpacking tree '%s', but saw a %s", treeName, treeSnapshot.getType()));
                        }
                        resultingSnapshot = treeSnapshot;
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 08:29:47 UTC 2024
    - 14K bytes
    - Viewed (0)
  6. src/cmd/go/internal/script/engine.go

    	Async bool
    
    	// RegexpArgs reports which arguments, if any, should be treated as regular
    	// expressions. It takes as input the raw, unexpanded arguments and returns
    	// the list of argument indices that will be interpreted as regular
    	// expressions.
    	//
    	// If RegexpArgs is nil, all arguments are assumed not to be regular
    	// expressions.
    	RegexpArgs func(rawArgs ...string) []int
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 27 01:16:19 UTC 2023
    - 22.2K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/resolver.go

    			case *syntax.FuncDecl:
    				name := s.Name.Value
    				obj := NewFunc(s.Name.Pos(), pkg, name, nil)
    				hasTParamError := false // avoid duplicate type parameter errors
    				if s.Recv == nil {
    					// regular function
    					if name == "init" || name == "main" && pkg.name == "main" {
    						code := InvalidInitDecl
    						if name == "main" {
    							code = InvalidMainDecl
    						}
    						if len(s.TParamList) != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 14:10:44 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  8. src/go/types/resolver.go

    				obj := NewFunc(d.decl.Name.Pos(), pkg, name, nil) // signature set later
    				hasTParamError := false                           // avoid duplicate type parameter errors
    				if d.decl.Recv.NumFields() == 0 {
    					// regular function
    					if d.decl.Recv != nil {
    						check.error(d.decl.Recv, BadRecv, "method has no receiver")
    						// treat as function
    					}
    					if name == "init" || (name == "main" && check.pkg.name == "main") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:22:59 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/controller/controller.go

    }
    
    // hostNamesForNamespacedName returns all possible hostnames for the given service name.
    // If Kubernetes Multi-Cluster Services (MCS) is enabled, this will contain the regular
    // hostname as well as the MCS hostname (clusterset.local). Otherwise, only the regular
    // hostname will be returned.
    func (c *Controller) hostNamesForNamespacedName(name types.NamespacedName) []host.Name {
    	if features.EnableMCSHost {
    		return []host.Name{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  10. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/TestInputAnnotationFailuresIntegrationTest.groovy

            result.assertHasErrorOutput("Possible solutions:")
            result.assertHasErrorOutput("1. Annotate with @InputFile for regular files.")
            result.assertHasErrorOutput("2. Annotate with @InputFiles for collections of files.")
            result.assertHasErrorOutput(". If you want to track the path, return File.absolutePath as a String and keep @Input.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 10.6K bytes
    - Viewed (0)
Back to top