Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 395 for Machines (0.16 sec)

  1. src/main/java/jcifs/smb1/util/DES.java

    // CONTROL EQUIPMENT IN HAZARDOUS ENVIRONMENTS REQUIRING FAIL-SAFE
    // PERFORMANCE, SUCH AS IN THE OPERATION OF NUCLEAR FACILITIES, AIRCRAFT
    // NAVIGATION OR COMMUNICATION SYSTEMS, AIR TRAFFIC CONTROL, DIRECT LIFE
    // SUPPORT MACHINES, OR WEAPONS SYSTEMS, IN WHICH THE FAILURE OF THE
    // SOFTWARE COULD LEAD DIRECTLY TO DEATH, PERSONAL INJURY, OR SEVERE
    // PHYSICAL OR ENVIRONMENTAL DAMAGE ("HIGH RISK ACTIVITIES").  WIDGET WORKSHOP
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 21.4K bytes
    - Viewed (0)
  2. pkg/bootstrap/instance_test.go

    			replacement: []byte("$1/test-path/$2"),
    		},
    		{
    			// Example: "customConfigFile":"../../tools/packaging/common/envoy_bootstrap.json"
    			// The path may change in CI/other machines
    			pattern:     regexp.MustCompile(`("customConfigFile":").*(envoy_bootstrap.json")`),
    			replacement: []byte(`"customConfigFile":"envoy_bootstrap.json"`),
    		},
    		{
    			pattern:     regexp.MustCompile(tmpDir),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/main/java/org/gradle/language/plugins/NativeBasePlugin.java

        }
    
        private static void addTargetMachineFactoryAsExtension(ExtensionContainer extensions, TargetMachineFactory targetMachineFactory) {
            extensions.add(TargetMachineFactory.class, "machines", targetMachineFactory);
        }
    
        private void addLifecycleTasks(final Project project, final TaskContainer tasks, final SoftwareComponentContainer components) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 26.1K bytes
    - Viewed (0)
  4. src/runtime/mbarrier.go

    // the ptr object regardless of the slot's color.
    //
    // Another place where we intentionally omit memory barriers is when
    // accessing mheap_.arena_used to check if a pointer points into the
    // heap. On relaxed memory machines, it's possible for a mutator to
    // extend the size of the heap by updating arena_used, allocate an
    // object from this new region, and publish a pointer to that object,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  5. src/math/rand/v2/rand.go

    	// meaning the unbiasing loop almost never runs.
    	// On 32-bit systems, here we need to implement that same logic in 32-bit math,
    	// both to preserve the exact output sequence observed on 64-bit machines
    	// and to preserve the optimization that the unbiasing loop almost never runs.
    	//
    	// We want to compute
    	// 	hi, lo := bits.Mul64(r.Uint64(), n)
    	// In terms of 32-bit halves, this is:
    	// 	x1:x0 := r.Uint64()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:25:49 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  6. src/runtime/race.go

    		racedatastart <= uintptr(addr) && uintptr(addr) < racedataend
    }
    
    //go:nosplit
    func raceinit() (gctx, pctx uintptr) {
    	lockInit(&raceFiniLock, lockRankRaceFini)
    
    	// On most machines, cgo is required to initialize libc, which is used by race runtime.
    	if !iscgo && GOOS != "darwin" {
    		throw("raceinit: race build must use cgo")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/syscall_freebsd.go

    			if i == len(uname.Version)-1 {
    				uname.Version[i] = 0
    			} else {
    				uname.Version[i] = ' '
    			}
    		}
    	}
    
    	mib = []_C_int{CTL_HW, HW_MACHINE}
    	n = unsafe.Sizeof(uname.Machine)
    	if err := sysctl(mib, &uname.Machine[0], &n, nil, 0); err != nil && !errors.Is(err, ENOMEM) {
    		return err
    	}
    
    	return nil
    }
    
    func Stat(path string, st *Stat_t) (err error) {
    	return Fstatat(AT_FDCWD, path, st, 0)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/validation/ValidationMessageCheckerTest.groovy

    Type 'SomeCacheableTask' property 'inputFiles' is annotated with @InputFiles but missing a normalization strategy.
    
    Reason: If you don't declare the normalization, outputs can't be re-used between machines or locations on the same machine, therefore caching efficiency drops significantly.
    
    Possible solution: Declare the normalization strategy by annotating the property with either @PathSensitive, @Classpath or @CompileClasspath.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 25.5K bytes
    - Viewed (0)
  9. src/internal/testenv/testenv.go

    	return syscallIsNotSupported(err)
    }
    
    // ParallelOn64Bit calls t.Parallel() unless there is a case that cannot be parallel.
    // This function should be used when it is necessary to avoid t.Parallel on
    // 32-bit machines, typically because the test uses lots of memory.
    func ParallelOn64Bit(t *testing.T) {
    	if goarch.PtrSize == 4 {
    		return
    	}
    	t.Parallel()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:41:38 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  10. src/runtime/string.go

    	}
    	return int64(un), true
    }
    
    //go:nosplit
    func findnull(s *byte) int {
    	if s == nil {
    		return 0
    	}
    
    	// Avoid IndexByteString on Plan 9 because it uses SSE instructions
    	// on x86 machines, and those are classified as floating point instructions,
    	// which are illegal in a note handler.
    	if GOOS == "plan9" {
    		p := (*[maxAlloc/2 - 1]byte)(unsafe.Pointer(s))
    		l := 0
    		for p[l] != 0 {
    			l++
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 13.4K bytes
    - Viewed (0)
Back to top