Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for Boundary (0.2 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildServiceIntegrationTest.groovy

                    plugins { id 'probe-plugin' version '1.0' }
                """
                file("boundary/build.gradle.kts") << """
                    plugins { `kotlin-dsl` } // put a boundary between classloader1 and classloader2
                """
                file("boundary/classloader2/build.gradle") << """
                    plugins { id 'probe-plugin' version '1.0' }
                """
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 11:47:23 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/deadcode.go

    		isgotype := d.ldr.IsGoType(symIdx)
    		relocs := d.ldr.Relocs(symIdx)
    		var usedInIface bool
    
    		if isgotype {
    			if d.dynlink {
    				// When dynamic linking, a type may be passed across DSO
    				// boundary and get converted to interface at the other side.
    				d.ldr.SetAttrUsedInIface(symIdx, true)
    			}
    			usedInIface = d.ldr.AttrUsedInIface(symIdx)
    		}
    
    		methods = methods[:0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 14:52:41 UTC 2024
    - 19K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewrite.go

    					fmt.Printf("rewriting %s  ->  %s\n", v0.LongString(), v.LongString())
    				}
    
    				// apply rewrite function
    				if rv(v) {
    					vchange = true
    					// If value changed to a poor choice for a statement boundary, move the boundary
    					if v.Pos.IsStmt() == src.PosIsStmt {
    						if k := nextGoodStatementIndex(v, j, b); k != j {
    							v.Pos = v.Pos.WithNotStmt()
    							b.Values[k].Pos = b.Values[k].Pos.WithIsStmt()
    						}
    					}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  4. pilot/pkg/model/gateway.go

    	// These are considered "verified", since there is mutually agreement from the pod, Secret, and Gateway, as all
    	// reside in the same namespace and trust boundary.
    	// Note: Secrets that are not referenced by any Gateway, but are in the same namespace as the pod, are explicitly *not*
    	// included. This ensures we don't give permission to unexpected secrets, such as the citadel root key/cert.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/data.go

    	}
    
    	Segtext.Length = va - uint64(*FlagTextAddr)
    
    	if len(Segrodata.Sections) > 0 {
    		// align to page boundary so as not to mix
    		// rodata and executable text.
    		//
    		// Note: gold or GNU ld will reduce the size of the executable
    		// file by arranging for the relro segment to end at a page
    		// boundary, and overlap the end of the text segment with the
    		// start of the relro segment in the file.  The PT_LOAD segments
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

      let description = [{
    Given an input tensor, this function computes cosine of every
      element in the tensor. Input range is `(-inf, inf)` and
      output range is `[-1,1]`. If input lies outside the boundary, `nan`
      is returned.
    
      ```python
      x = tf.constant([-float("inf"), -9, -0.5, 1, 1.2, 200, 10000, float("inf")])
      tf.math.cos(x) ==> [nan -0.91113025 0.87758255 0.5403023 0.36235774 0.48718765 -0.95215535 nan]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  7. cmd/data-scanner.go

    			if !into.Compacted {
    				var foundAny bool
    				parent := thisHash
    				for parent != hashPath(f.updateCache.Info.Name) {
    					e := f.updateCache.find(parent.Key())
    					if e == nil || e.Compacted {
    						foundAny = true
    						break
    					}
    					next := f.updateCache.searchParent(parent)
    					if next == nil {
    						foundAny = true
    						break
    					}
    					parent = *next
    				}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:43:17 UTC 2024
    - 47.6K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssagen/ssa.go

    			hotRequire = 31
    		}
    	}
    
    	// Emit basic blocks
    	for i, b := range f.Blocks {
    
    		s.lineRunStart = nil
    		s.SetPos(s.pp.Pos.WithNotStmt()) // It needs a non-empty Pos, but cannot be a statement boundary (yet).
    
    		if hotAlign > 0 && b.Hotness&ssa.HotPgoInitial == ssa.HotPgoInitial {
    			// So far this has only been shown profitable for PGO-hot loop headers.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top