Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 79 for isIsolated (0.15 sec)

  1. src/cmd/go/internal/work/security.go

    // We must avoid flags like -fplugin=, which can allow
    // arbitrary code execution during the build.
    // Do not make changes here without carefully
    // considering the implications.
    // (That's why the code is isolated in a file named security.go.)
    //
    // Note that -Wl,foo means split foo on commas and pass to
    // the linker, so that -Wl,-foo,bar means pass -foo bar to
    // the linker. Similarly -Wa,foo for the assembler and so on.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:47:34 UTC 2024
    - 10K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/initorder.go

    		if obj, _ := obj.(dependency); obj != nil {
    			M[obj] = &graphNode{obj: obj}
    		}
    	}
    
    	// compute edges for graph M
    	// (We need to include all nodes, even isolated ones, because they still need
    	// to be scheduled for initialization in correct order relative to other nodes.)
    	for obj, n := range M {
    		// for each dependency obj -> d (= deps[i]), create graph edges n->s and s->n
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 22:06:51 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsFixture.groovy

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.cc.impl.isolated
    
    import groovy.transform.stc.ClosureParams
    import groovy.transform.stc.FirstParam
    import org.gradle.configuration.ApplyScriptPluginBuildOperationType
    import org.gradle.configuration.project.ConfigureProjectBuildOperationType
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  4. src/go/types/initorder.go

    		if obj, _ := obj.(dependency); obj != nil {
    			M[obj] = &graphNode{obj: obj}
    		}
    	}
    
    	// compute edges for graph M
    	// (We need to include all nodes, even isolated ones, because they still need
    	// to be scheduled for initialization in correct order relative to other nodes.)
    	for obj, n := range M {
    		// for each dependency obj -> d (= deps[i]), create graph edges n->s and s->n
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/tutorial/partr3_multi_project_builds.adoc

    - Extract your build logic from your project build (and re-use it among subprojects)
    - Combine builds that are usually developed independently (such as a plugin and an application)
    - Decompose a large build into smaller, more isolated chunks
    
    == Step 4. Add build to the Build
    
    Let's add a plugin to our build.
    First, create a new directory called `license-plugin` in the `gradle` directory:
    
    [source]
    ----
    cd gradle
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 17:16:27 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/api/services/internal/DefaultBuildServicesRegistryTest.groovy

            when:
            registerService("service", BuildService)
    
            then:
            registry.registrations.getByName("service") != null
        }
    
        def "parameters are isolated when the service is instantiated"() {
            given:
            def provider = registerService("service", ServiceImpl) {
                it.parameters.prop = "value 1"
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/text/unicode/bidi/bracket.go

    	openers *list.List // list of positions for opening brackets
    
    	// bracket pair positions sorted by location of opening bracket
    	pairPositions bracketPairs
    
    	codesIsolatedRun []Class // directional bidi codes for an isolated run
    	indexes          []int   // array of index values into the original string
    
    }
    
    // matchOpener reports whether characters at given positions form a matching
    // bracket pair.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 19:27:51 UTC 2019
    - 11.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/networking/v1/generated.proto

      // across all of the NetworkPolicy objects whose podSelector matches the pod. If
      // this field is empty then this NetworkPolicy does not allow any traffic (and serves
      // solely to ensure that the pods it selects are isolated by default)
      // +optional
      // +listType=atomic
      repeated NetworkPolicyIngressRule ingress = 2;
    
      // egress is a list of egress rules to be applied to the selected pods. Outgoing traffic
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/delegates/ProjectDelegate.kt

            delegate.buildscript(configureClosure)
    
        override fun getProject(): Project =
            delegate.project
    
        override fun getIsolated(): IsolatedProject =
            delegate.isolated
    
        override fun dependencies(configureClosure: Closure<*>) =
            delegate.dependencies(configureClosure)
    
        override fun getPath(): String =
            delegate.path
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 22:16:16 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/networking/v1/types_swagger_doc_generated.go

    	"egress":      "egress is a list of egress rules to be applied to the selected pods. Outgoing traffic is allowed if there are no NetworkPolicies selecting the pod (and cluster policy otherwise allows the traffic), OR if the traffic...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 18:19:25 UTC 2023
    - 23.7K bytes
    - Viewed (0)
Back to top