Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 2,121 for below (0.06 sec)

  1. releasenotes/notes/manifest-base-cleanup.yaml

          In this release, the duplicated configurations are fully removed from the `base` chart.
    
          Below shows a mapping of old configuration to new configuration:
    
          | Old                                     | New                                     |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 27 04:26:43 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. src/internal/types/testdata/fixedbugs/issue49482.go

    // The following is OK, per the special handling for type literals discussed in issue #49482.
    type _[P *struct{}] struct{}
    type _[P *int,] int
    type _[P (*int),] int
    
    const P = 2 // declare P to avoid noisy 'undefined' errors below.
    
    // The following parse as invalid array types due to parsing ambiguitiues.
    type _ [P *int /* ERROR "int (type) is not an expression" */ ]int
    type _ [P /* ERROR "non-function P" */ (*int)]int
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 906 bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/tfrt_ops.mlir

      func.return
    }
    
    // -----
    func.func @test_ifrt_call_fail_unsorted_variable_arg_indices(%arg0: tensor<?xf32>, %arg1: tensor<?xf32>) {
      // expected-error@below {{variable_arg_indices must be sorted in ascending order}}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 15 06:13:11 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  4. maven-compat/src/main/java/org/apache/maven/settings/DefaultMavenSettingsBuilder.java

            // -------------------------------------------------------------------------------------
            // Alright, here's the justification for all the regexp wizardry below...
            //
            // Continuum and other server-like apps may need to locate the user-level and
            // global-level settings somewhere other than ${user.home} and ${maven.home},
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  5. src/math/log.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package math
    
    /*
    	Floating-point logarithm.
    */
    
    // The original C code, the long comment, and the constants
    // below are from FreeBSD's /usr/src/lib/msun/src/e_log.c
    // and came with this notice. The go code is a simpler
    // version of the original C.
    //
    // ====================================================
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/dev_dragonfly.go

    // license that can be found in the LICENSE file.
    
    // Functions to access/create device major and minor numbers matching the
    // encoding used in Dragonfly's sys/types.h header.
    //
    // The information below is extracted and adapted from sys/types.h:
    //
    // Minor gives a cookie instead of an index since in order to avoid changing the
    // meanings of bits 0-15 or wasting time and space shifting bits 16-31 for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 23 19:01:58 UTC 2018
    - 1K bytes
    - Viewed (0)
  7. cmd/update_nofips.go

    //
    // You should have received a copy of the GNU Affero General Public License
    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package cmd
    
    // Newer official download info URLs appear earlier below.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Mar 09 03:07:08 UTC 2024
    - 931 bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/dev_freebsd.go

    // license that can be found in the LICENSE file.
    
    // Functions to access/create device major and minor numbers matching the
    // encoding used in FreeBSD's sys/types.h header.
    //
    // The information below is extracted and adapted from sys/types.h:
    //
    // Minor gives a cookie instead of an index since in order to avoid changing the
    // meanings of bits 0-15 or wasting time and space shifting bits 16-31 for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 23 19:01:58 UTC 2018
    - 1013 bytes
    - Viewed (0)
  9. src/math/pow.go

    		// Any number outside this range will be truncated before the decimal point and therefore will always be
    		// an even integer.
    		// Without this check and if x overflows int64 the int64(xi) conversion below may produce incorrect results
    		// on some architectures (and does so on arm64). See issue #57465.
    		return false
    	}
    
    	xi, xf := Modf(x)
    	return xf == 0 && int64(xi)&1 == 1
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 24 19:10:58 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  10. src/cmd/cgo/internal/testplugin/testdata/issue44956/main.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 44956: writable static temp is not exported correctly.
    // In the test below, package base is
    //
    //     X = &map{...}
    //
    // which compiles to
    //
    //     X = &stmp           // static
    //     stmp = makemap(...) // in init function
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top