Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for 644 (0.07 sec)

  1. src/runtime/defs1_netbsd_386.go

    func (tv *timeval) set_usec(x int32) {
    	tv.tv_usec = x
    }
    
    type itimerval struct {
    	it_interval timeval
    	it_value    timeval
    }
    
    type mcontextt struct {
    	__gregs     [19]uint32
    	__fpregs    [644]byte
    	_mc_tlsbase int32
    }
    
    type ucontextt struct {
    	uc_flags    uint32
    	uc_link     *ucontextt
    	uc_sigmask  sigset
    	uc_stack    stackt
    	uc_mcontext mcontextt
    	__uc_pad    [4]int32
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/filesystem/FileSystem.java

        /**
         * Default Unix permissions for directories, {@code 755}.
         */
        @SuppressWarnings("OctalInteger")
        int DEFAULT_DIR_MODE = 0755;
    
        /**
         * Default Unix permissions for files, {@code 644}.
         */
        @SuppressWarnings("OctalInteger")
        int DEFAULT_FILE_MODE = 0644;
    
        /**
         * Tells whether the file system is case sensitive.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  3. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/parsing/ErrorParsingTest.kt

                            erroneousSource = indexes: 42..42, line/column: 1/43..1/43, file: test
                        )
                        ParsingError(
                            message = Unparsable value argument: "("plugin-id-1) ; kotlin("plugin-id-2")". Expecting ')',
                            potentialElementSource = indexes: 6..44, line/column: 1/7..1/45, file: test,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 09:41:25 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  4. src/runtime/memmove_test.go

    	Escape(p)
    	b.ResetTimer()
    	for i := 0; i < b.N; i++ {
    		*p = [56 / 4]uint32{}
    	}
    }
    
    func BenchmarkClearFat64(b *testing.B) {
    	p := new([64 / 4]uint32)
    	Escape(p)
    	b.ResetTimer()
    	for i := 0; i < b.N; i++ {
    		*p = [64 / 4]uint32{}
    	}
    }
    
    func BenchmarkClearFat72(b *testing.B) {
    	p := new([72 / 4]uint32)
    	Escape(p)
    	b.ResetTimer()
    	for i := 0; i < b.N; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:12 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  5. src/runtime/defs_netbsd.go

    GOARCH=386 go tool cgo -cdefs defs_netbsd.go defs_netbsd_386.go >defs_netbsd_386.h
    GOARCH=arm go tool cgo -cdefs defs_netbsd.go defs_netbsd_arm.go >defs_netbsd_arm.h
    */
    
    // +godefs map __fpregset_t [644]byte
    
    package runtime
    
    /*
    #include <sys/types.h>
    #include <sys/mman.h>
    #include <sys/signal.h>
    #include <sys/event.h>
    #include <sys/time.h>
    #include <sys/ucontext.h>
    #include <sys/unistd.h>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  6. platforms/core-runtime/native/src/test/groovy/org/gradle/internal/nativeintegration/filesystem/CommonFileSystemTest.groovy

            def file = tmpDir.file("someFile")
    
            when:
            fs.chmod(file, 0644)
    
            then:
            FileException e = thrown()
            e.message == "Could not set file mode 644 on '$file'."
        }
    
        @Requires(UnitTestPreconditions.FilePermissions)
        def "unix permissions on files can be changed and read"() {
            def f = tmpDir.createFile("someFile\u03B1.txt")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:06:40 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/cmd/bisect/main.go

    	sort.Slice(all, func(i, j int) bool { return bits.Reverse64(all[i]) < bits.Reverse64(all[j]) })
    	digits := sort.Search(64/4, func(digits int) bool {
    		mask := uint64(1)<<(4*digits) - 1
    		for i := 0; i+1 < len(all); i++ {
    			if all[i]&mask == all[i+1]&mask {
    				return false
    			}
    		}
    		return true
    	})
    	if digits < 64/4 {
    		digits++
    	}
    	return digits
    }
    
    // search searches for a single locally minimal change set.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 18:11:19 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  8. pom.xml

    						<defineStatement>_unpackaged_files_terminate_build 0</defineStatement>
    						<defineStatement>_binaries_in_noarch_packages_terminate_build 0</defineStatement>
    					</defineStatements>
    					<defaultFilemode>644</defaultFilemode>
    					<defaultDirmode>755</defaultDirmode>
    					<defaultUsername>${packaging.fess.user}</defaultUsername>
    					<defaultGroupname>${packaging.fess.group}</defaultGroupname>
    					<!--
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 30 06:49:02 UTC 2024
    - 48.7K bytes
    - Viewed (0)
  9. test/fixedbugs/issue60982.go

    	case 638:
    		return 638
    	case 639:
    		return 639
    	case 640:
    		return 640
    	case 641:
    		return 641
    	case 642:
    		return 642
    	case 643:
    		return 643
    	case 644:
    		return 644
    	case 645:
    		return 645
    	case 646:
    		return 646
    	case 647:
    		return 647
    	case 648:
    		return 648
    	case 649:
    		return 649
    	case 650:
    		return 650
    	case 651:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 28 16:07:47 UTC 2023
    - 23.7K bytes
    - Viewed (0)
  10. tensorflow/cc/gradients/array_grad_test.cc

      TensorShape y_shape({2, 3});
      auto y = MirrorPadGrad(scope_, x, paddings, "SYMMETRIC");
      RunTest(x, x_shape, y, y_shape);
    }
    
    TEST_F(ArrayGradTest, StridedSliceGrad) {
      TensorShape x_shape({6, 4, 4});
      auto x = Placeholder(scope_, DT_FLOAT, Placeholder::Shape(x_shape));
    
      // y = x[2:6:2, 1:3, 1:3]
      auto y = StridedSlice(scope_, x, {2, 1, 1}, {6, 3, 3}, {2, 1, 1});
      // y.shape = [2, 2, 2];
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 10 23:33:32 UTC 2023
    - 19.3K bytes
    - Viewed (0)
Back to top