Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,799 for reserved4 (0.17 sec)

  1. src/internal/filepathlite/path_windows.go

    	}
    	if !isReservedBaseName(base) {
    		return false
    	}
    	if len(base) == len(name) {
    		return true
    	}
    	// The path element is a reserved name with an extension.
    	// Some Windows versions consider this a reserved name,
    	// while others do not. Use FullPath to see if the name is
    	// reserved.
    	if p, _ := syscall.FullPath(name); len(p) >= 4 && p[:4] == `\\.\` {
    		return true
    	}
    	return false
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:50 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  2. platforms/software/platform-base/src/integTest/groovy/org/gradle/api/plugins/BasePluginIntegrationTest.groovy

                }
                apply plugin: 'base'
            """
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  3. src/crypto/internal/edwards25519/scalar.go

    // Copyright (c) 2016 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package edwards25519
    
    import (
    	"errors"
    	"internal/byteorder"
    )
    
    // A Scalar is an integer modulo
    //
    //	l = 2^252 + 27742317777372353535851937790883648493
    //
    // which is the prime order of the edwards25519 group.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/SocksProxy.kt

        if (version != VERSION_5) throw ProtocolException("unexpected version: $version")
    
        val command = fromSource.readByte() and 0xff
    
        val reserved = fromSource.readByte() and 0xff
        if (reserved != 0) throw ProtocolException("unexpected reserved: $reserved")
    
        val addressType = fromSource.readByte() and 0xff
        val toAddress =
          when (addressType) {
            ADDRESS_TYPE_IPV4 -> {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 11 22:09:35 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  5. pkg/kubelet/types/types.go

    			statuses = append(statuses, *status)
    		}
    	}
    	return statuses
    }
    
    // Reservation represents reserved resources for non-pod components.
    type Reservation struct {
    	// System represents resources reserved for non-kubernetes components.
    	System v1.ResourceList
    	// Kubernetes represents resources reserved for kubernetes system components.
    	Kubernetes v1.ResourceList
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 13:13:22 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/ops/gen/cpp/renderers/cpp_file_renderer.cc

    /* Copyright 2021 The TensorFlow Authors. All Rights Reserved.
    
    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at
    
        http://www.apache.org/licenses/LICENSE-2.0
    
    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 05:51:40 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/file/CopyProcessingSpec.java

         * Returns the Unix permissions to use for the target files. {@code null} means that existing
         * permissions are preserved. It is dependent on the copy action implementation whether these permissions
         * will actually be applied.
         *
         * @return The file permissions, or {@code null} if existing permissions should be preserved.
         *
         * @deprecated Use {@link #getFilePermissions()} instead. This method is scheduled for removal in Gradle 9.0.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 07:53:18 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/cpumanager/policy_static_test.go

    				tc.description, tc.expCSet, cset)
    		}
    	}
    }
    
    // above test cases are without kubelet --reserved-cpus cmd option
    // the following tests are with --reserved-cpus configured
    type staticPolicyTestWithResvList struct {
    	description     string
    	topo            *topology.CPUTopology
    	numReservedCPUs int
    	reserved        cpuset.CPUSet
    	stAssignments   state.ContainerCPUAssignments
    	stDefaultCPUSet cpuset.CPUSet
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  9. src/runtime/rand.go

    // Copyright 2023 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Random number generation
    
    package runtime
    
    import (
    	"internal/chacha8rand"
    	"internal/goarch"
    	"runtime/internal/math"
    	"unsafe"
    	_ "unsafe" // for go:linkname
    )
    
    // OS-specific startup can set startupRand if the OS passes
    // random data to the process at startup time.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 14:32:47 UTC 2024
    - 8K bytes
    - Viewed (0)
  10. internal/grid/handlers.go

    func makeSubHandlerID(id HandlerID, subRoute string) subHandlerID {
    	b := subHandlerID(sha256.Sum256([]byte(subRoute)))
    	b[0] = byte(id)
    	b[1] = 0 // Reserved
    	return b
    }
    
    func (s subHandlerID) withHandler(id HandlerID) subHandlerID {
    	s[0] = byte(id)
    	s[1] = 0 // Reserved
    	return s
    }
    
    func (s *subHandlerID) String() string {
    	if s == nil {
    		return ""
    	}
    	return hex.EncodeToString(s[:])
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 27.1K bytes
    - Viewed (0)
Back to top