Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 364 for isDependent (0.17 sec)

  1. android/guava/src/com/google/common/collect/MapMaker.java

      }
    
      /**
       * Builds a thread-safe map. This method does not alter the state of this {@code MapMaker}
       * instance, so it can be invoked again to create multiple independent maps.
       *
       * <p>The bulk operations {@code putAll}, {@code equals}, and {@code clear} are not guaranteed to
       * be performed atomically on the returned map. Additionally, {@code size} and {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 13 14:30:51 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/nilcheck.go

    package ssa
    
    import (
    	"cmd/compile/internal/ir"
    	"cmd/internal/src"
    	"internal/buildcfg"
    )
    
    // nilcheckelim eliminates unnecessary nil checks.
    // runs on machine-independent code.
    func nilcheckelim(f *Func) {
    	// A nil check is redundant if the same nil check was successful in a
    	// dominating block. The efficacy of this pass depends heavily on the
    	// efficacy of the cse pass.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 20:45:54 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/DebugSymbolRenderer.kt

            val matchingClassesRanking = matchingClasses
                .associateWith { matchingClassSet.intersect(it.allSuperclasses).size }
    
            // Find supertypes with the highest number of frontend-independent supertypes
            // It means more specific classes will be selected (such as KaClassSymbol instead of KaSymbol)
            val minSupertypeCount = matchingClassesRanking.maxOf { it.value }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  4. src/cmd/distpack/pack.go

    // Distpack creates the tgz and zip files for a Go distribution.
    // It writes into GOROOT/pkg/distpack:
    //
    //   - a binary distribution (tgz or zip) for the current GOOS and GOARCH
    //   - a source distribution that is independent of GOOS/GOARCH
    //   - the module mod, info, and zip files for a distribution in module form
    //     (as used by GOTOOLCHAIN support in the go command).
    //
    // Distpack is typically invoked by the -distpack flag to make.bash.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/reconcilers/peer_endpoint_lease.go

    			baseKey:   baseKey,
    			leaseTime: leaseTime,
    		},
    	}, nil
    }
    
    // PeerEndpointController is the controller manager for updating the peer endpoint leases.
    // This provides a separate independent reconciliation loop for peer endpoint leases
    // which ensures that the peer kube-apiservers are fetching the updated endpoint info for a given apiserver
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 09:23:05 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  6. src/cmd/internal/dwarf/dwarf.go

    	}
    	return nil
    }
    
    // Emit DWARF attributes and child DIEs for an 'abstract' subprogram.
    // The abstract subprogram DIE for a function contains its
    // location-independent attributes (name, type, etc). Other instances
    // of the function (any inlined copy of it, or the single out-of-line
    // 'concrete' instance) will contain a pointer back to this abstract
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 15:23:18 UTC 2024
    - 43K bytes
    - Viewed (0)
  7. src/cmd/go/internal/script/engine.go

    	Usage() *CmdUsage
    }
    
    // A WaitFunc is a function called to retrieve the results of a Cmd.
    type WaitFunc func(*State) (stdout, stderr string, err error)
    
    // A CmdUsage describes the usage of a Cmd, independent of its name
    // (which can change based on its registration).
    type CmdUsage struct {
    	Summary string   // in the style of the Name section of a Unix 'man' page, omitting the name
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 27 01:16:19 UTC 2023
    - 22.2K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/MapMaker.java

      }
    
      /**
       * Builds a thread-safe map. This method does not alter the state of this {@code MapMaker}
       * instance, so it can be invoked again to create multiple independent maps.
       *
       * <p>The bulk operations {@code putAll}, {@code equals}, and {@code clear} are not guaranteed to
       * be performed atomically on the returned map. Additionally, {@code size} and {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 13 14:30:51 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/execution/taskgraph/ParallelTaskExecutionIntegrationTest.groovy

            """
            expect:
            2.times {
                blockingServer.expectConcurrent(1, ":aPing", ":bPing")
                run ":aPing", ":bPing"
            }
        }
    
        def "independent tasks from multiple projects execute in parallel"() {
            given:
            withParallelThreads(3)
    
            expect:
            2.times {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 14:00:51 UTC 2024
    - 21K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/tutorial/partr3_multi_project_builds.adoc

    BUILD SUCCESSFUL in 11s
    8 actionable tasks: 6 executed, 2 up-to-date
    ----
    
    Our build for the root project `authoring-tutorial` now includes two subprojects, `app` and `lib`.
    `app` depends on `lib`.
    You can build `lib` independent of `app`.
    However, to build `app`, Gradle will also build `lib`.
    
    == Step 3. Understand Composite Builds
    A composite build is simply a build that includes other builds.
    
    Composite builds allow you to:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 17:16:27 UTC 2024
    - 13.9K bytes
    - Viewed (0)
Back to top