Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 54 for Boundaries (0.29 sec)

  1. android/guava-tests/test/com/google/common/math/MathTesting.java

            }
          };
    
      /*
       * This list contains values that attempt to provoke overflow in integer operations. It contains
       * positive values on or near 2^N for N near multiples of 8 (near byte boundaries).
       */
      static final ImmutableSet<Integer> POSITIVE_INTEGER_CANDIDATES;
    
      static final Iterable<Integer> NEGATIVE_INTEGER_CANDIDATES;
    
      static final Iterable<Integer> NONZERO_INTEGER_CANDIDATES;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 11.2K bytes
    - Viewed (0)
  2. src/html/template/js_test.go

    		{"\u2029", `\u2029`},
    		{"\\", `\\`},
    		{"\\n", `\\n`},
    		{"foo\r\nbar", `foo\r\nbar`},
    		// Preserve attribute boundaries.
    		{`"`, `\u0022`},
    		{`'`, `\u0027`},
    		// Allow embedding in HTML without further escaping.
    		{`&amp;`, `\u0026amp;`},
    		// Prevent breaking out of text node and element boundaries.
    		{"</script>", `\u003c\/script\u003e`},
    		{"<![CDATA[", `\u003c![CDATA[`},
    		{"]]>", `]]\u003e`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 02:20:11 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/nilcheck.go

    					}
    				}
    			}
    
    			// Next, order values in the current block w.r.t. stores.
    			b.Values = storeOrder(b.Values, sset, storeNumber)
    
    			pendingLines := f.cachedLineStarts // Holds statement boundaries that need to be moved to a new value/block
    			pendingLines.clear()
    
    			// Next, process values in the block.
    			for _, v := range b.Values {
    				switch v.Op {
    				case OpIsNonNil:
    					ptr := v.Args[0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 20:45:54 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  4. pkg/ctrlz/assets/static/js/popper-1.12.9.min.js

    iers,'hide','preventOverflow'))return e;var t=e.offsets.reference,o=T(e.instance.modifiers,function(e){return'preventOverflow'===e.name}).boundaries;if(t.bottom<o.top||t.left>o.right||t.top>o.bottom||t.right<o.left){if(!0===e.hide)return e;e.hide=!0,e.attributes['x-out-of-boundaries']=''}else{if(!1===e.hide)return e;e.hide=!1,e.attributes['x-out-of-boundaries']=!1}return e}},computeStyle:{order:850,enabled:!0,fn:function(e,t){var o=t.x,i=t.y,n=e.offsets.popper,p=T(e.instance.modifiers,function(e...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 18.7K bytes
    - Viewed (0)
  5. src/main/webapp/js/admin/popper.min.js

    iers,'hide','preventOverflow'))return e;var t=e.offsets.reference,o=D(e.instance.modifiers,function(e){return'preventOverflow'===e.name}).boundaries;if(t.bottom<o.top||t.left>o.right||t.top>o.bottom||t.right<o.left){if(!0===e.hide)return e;e.hide=!0,e.attributes['x-out-of-boundaries']=''}else{if(!1===e.hide)return e;e.hide=!1,e.attributes['x-out-of-boundaries']=!1}return e}},computeStyle:{order:850,enabled:!0,fn:function(e,t){var o=t.x,n=t.y,i=e.offsets.popper,r=D(e.instance.modifiers,function(e...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 20.8K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/plugins/DefaultPluginRegistry.java

        }
    
        @Nullable
        private PluginImplementation<?> lookup(PluginId pluginId, ClassLoader classLoader) {
            // Don't go up the parent chain.
            // Don't want to risk classes crossing “scope” boundaries and being non collectible.
    
            if (pluginId.getNamespace() == null) {
                PluginId qualified = pluginId.withNamespace(DefaultPluginManager.CORE_PLUGIN_NAMESPACE);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:52:06 UTC 2021
    - 10.4K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/NativeComponents.java

                    buildDependentComponents.dependsOn(buildDependents);
                }
                // Wire build dependent binaries tasks dependencies
                // Defer dependencies gathering as we need to resolve across project's boundaries
                assembleDependents.dependsOn(new Callable<Iterable<Task>>() {
                    @Override
                    public Iterable<Task> call() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 11K bytes
    - Viewed (0)
  8. src/context/context.go

    // license that can be found in the LICENSE file.
    
    // Package context defines the Context type, which carries deadlines,
    // cancellation signals, and other request-scoped values across API boundaries
    // and between processes.
    //
    // Incoming requests to a server should create a [Context], and outgoing
    // calls to servers should accept a Context. The chain of function
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 23.7K bytes
    - Viewed (0)
  9. src/os/file_plan9.go

    		return 0, io.EOF
    	}
    	return n, e
    }
    
    // write writes len(b) bytes to the File.
    // It returns the number of bytes written and an error, if any.
    // Since Plan 9 preserves message boundaries, never allow
    // a zero-byte write.
    func (f *File) write(b []byte) (n int, err error) {
    	if err := f.writeLock(); err != nil {
    		return 0, err
    	}
    	defer f.writeUnlock()
    	if len(b) == 0 {
    		return 0, nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:35:30 UTC 2024
    - 16K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modfetch/repo.go

    // in its root directory, along with a new requirement cycle.
    // The ability to shift module boundaries in this way is expected to be
    // important in large-scale program refactorings, similar to the ones
    // described in https://talks.golang.org/2016/refactor.article.
    //
    // The possibility of shifting module boundaries reemphasizes
    // that you must know both the module path and its version
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 16:36:19 UTC 2023
    - 15.2K bytes
    - Viewed (0)
Back to top