Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 672 for therefore (0.25 sec)

  1. src/os/sys_aix.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package os
    
    import "syscall"
    
    // gethostname syscall cannot be used because it also returns the domain.
    // Therefore, hostname is retrieve with uname syscall and the Nodename field.
    
    func hostname() (name string, err error) {
    	var u syscall.Utsname
    	if errno := syscall.Uname(&u); errno != nil {
    		return "", NewSyscallError("uname", errno)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 11 15:41:04 UTC 2018
    - 682 bytes
    - Viewed (0)
  2. platforms/software/resources/src/main/java/org/gradle/internal/resource/local/LocallyAvailableResourceFinderSearchableFileStoreAdapter.java

    import java.util.stream.Collectors;
    
    /**
     * Makes a LocallyAvailableResourceFinder out of a FileStoreSearcher.
     * @param <C> The type of criterion the filestore can be searched for, and therefore locally available resources searched for.
     */
    public class LocallyAvailableResourceFinderSearchableFileStoreAdapter<C> extends AbstractLocallyAvailableResourceFinder<C> {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. pkg/controller/volume/ephemeral/controller.go

    	// objects from the API server. It is shared with other controllers and
    	// therefore the PVC objects in its store should be treated as immutable.
    	pvcLister  corelisters.PersistentVolumeClaimLister
    	pvcsSynced cache.InformerSynced
    
    	// podLister is the shared Pod lister used to fetch Pod
    	// objects from the API server. It is shared with other controllers and
    	// therefore the Pod objects in its store should be treated as immutable.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  4. src/internal/types/testdata/fixedbugs/issue60688.go

    package p
    
    type String string
    
    func g[P any](P, string) {}
    
    // String and string are not identical and thus must not unify
    // (they are element types of the func type and therefore must
    // be identical to match).
    // The result is an error from type inference, rather than an
    // error from an assignment mismatch.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 12 18:44:59 UTC 2023
    - 607 bytes
    - Viewed (0)
  5. pkg/config/host/names.go

    	ai, aj := string(a[0]) == "*", string(b[0]) == "*"
    	if ai && !aj {
    		// h[i] is a wildcard, but h[j] isn't; therefore h[j] < h[i]
    		return false
    	} else if !ai && aj {
    		// h[j] is a wildcard, but h[i] isn't; therefore h[i] < h[j]
    		return true
    	}
    
    	// they're either both wildcards, or both not; in either case we sort them longest to shortest, alphabetically
    	if len(a) == len(b) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 01 19:19:22 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/smb1/AndXServerMessageBlock.java

            /* Normally, without intervention everything would batch
             * with everything else. If the below clause evaluates true
             * the andx command will not be written and therefore the
             * response will not read a batched command and therefore
             * the 'received' member of the response object will not
             * be set to true indicating the send and sendTransaction
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 11.3K bytes
    - Viewed (0)
  7. maven-core/src/test/resources-project-builder/pom-encoding/utf-8/pom.xml

    KIND, either express or implied.  See the License for the
    specific language governing permissions and limitations
    under the License.
    -->
    
    <!--
    NOTE: This POM's XML declaration specified no encoding which should therefore default to UTF-8.
    -->
    
    <project>
      <modelVersion>4.0.0</modelVersion>
    
      <groupId>org.apache.maven.its.mng2254</groupId>
      <artifactId>utf-8</artifactId>
      <version>0.1-SNAPSHOT</version>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  8. tensorflow/c/experimental/saved_model/internal/concrete_function_type.h

    // and should not be depended on.
    
    // It doesn't make sense to wrap tensorflow::ConcreteFunction* in a separate
    // struct, since the lifetime of the struct and the raw pointer it wraps would
    // be different. Therefore TF_ConcreteFunction* = tensorflow::ConcreteFunction*.
    typedef struct TF_ConcreteFunction TF_ConcreteFunction;
    
    namespace tensorflow {
    
    DEFINE_CONVERSION_FUNCTIONS(tensorflow::ConcreteFunction, TF_ConcreteFunction)
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 29 01:58:17 UTC 2020
    - 1.5K bytes
    - Viewed (0)
  9. test/fixedbugs/bug517.go

    // license that can be found in the LICENSE file.
    
    // The gofrontend used to mishandle this code due to a pass ordering issue.
    // It was inconsistent as to whether unsafe.Sizeof(byte(0)) was a constant,
    // and therefore as to whether it was a direct-iface type.
    
    package main
    
    import "unsafe"
    
    type A [unsafe.Sizeof(byte(0))]*byte
    
    func (r A) V() byte {
    	return *r[0]
    }
    
    func F() byte {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 20 03:00:06 UTC 2023
    - 703 bytes
    - Viewed (0)
  10. src/cmd/cgo/internal/testsanitizers/testdata/asan_useAfterReturn.go

    // compiler because foo() is returning the reference to 'local', and return stack of
    // foo() will be invalid. Thus for main() to use the reference to 'local', the 'local'
    // must be available even after foo() has finished. Therefore, Go has no such issue.
    
    import "fmt"
    
    var ptr *int
    
    func main() {
    	foo()
    	fmt.Printf("ptr=%x, %v", *ptr, ptr)
    }
    
    func foo() {
    	var local int
    	local = 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 773 bytes
    - Viewed (0)
Back to top