Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of about 10,000 for pound (0.41 sec)

  1. src/cmd/vendor/golang.org/x/telemetry/internal/mmap/mmap_unix.go

    // Copyright 2011 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.
    
    //go:build unix && (!solaris || go1.20)
    
    package mmap
    
    import (
    	"fmt"
    	"io/fs"
    	"os"
    	"syscall"
    )
    
    func mmapFile(f *os.File, _ *Data) (Data, error) {
    	st, err := f.Stat()
    	if err != nil {
    		return Data{}, err
    	}
    	size := st.Size()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 30 21:40:49 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  2. src/cmd/fix/main_test.go

    			if !ok {
    				return
    			}
    
    			if fixed2 {
    				t.Errorf("applied fixes during second round")
    				return
    			}
    
    			if out2 != out {
    				t.Errorf("changed output after second round of fixes.\n--- output after first round\n%s\n--- output after second round\n%s",
    					out, out2)
    				tdiff(t, "first", out, "second", out2)
    			}
    		})
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 05:31:47 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/sockcmsg_unix_other.go

    // Copyright 2019 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.
    
    //go:build aix || darwin || freebsd || linux || netbsd || openbsd || solaris || zos
    
    package unix
    
    import (
    	"runtime"
    )
    
    // Round the length of a raw sockaddr up to align it properly.
    func cmsgAlignOf(salen int) int {
    	salign := SizeofPtr
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  4. src/math/floor_riscv64.s

    // 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.
    
    #include "textflag.h"
    
    #define PosInf 0x7FF0000000000000
    
    // The rounding mode of RISC-V is different from Go spec.
    
    #define ROUNDFN(NAME, MODE) 	\
    TEXT NAME(SB),NOSPLIT,$0; 	\
    	MOVD	x+0(FP), F0; 	\
    	/* whether x is NaN */; \
    	FEQD	F0, F0, X6;	\
    	BNEZ	X6, 3(PC);	\
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 23 08:34:12 UTC 2024
    - 1K bytes
    - Viewed (0)
  5. pkg/apis/core/v1/conversion_test.go

    		// We can't support that because Spec.Template is not a pointer in RS,
    		// so it will round-trip as non-nil but empty.
    		if rc.Spec.Template == nil {
    			rc.Spec.Template = &v1.PodTemplateSpec{}
    		}
    		// Sometimes the fuzzer decides to insert an empty label key.
    		// This doesn't round-trip properly because it's invalid.
    		if rc.Spec.Selector != nil {
    			delete(rc.Spec.Selector, "")
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 05:34:15 UTC 2023
    - 21.7K bytes
    - Viewed (0)
  6. pkg/kubelet/volumemanager/populator/desired_state_of_world_populator.go

    	}
    
    	if pv.Spec.ClaimRef == nil {
    		return nil, "", fmt.Errorf(
    			"found PV object %s but it has a nil pv.Spec.ClaimRef indicating it is not yet bound to the claim",
    			name)
    	}
    
    	if pv.Spec.ClaimRef.UID != expectedClaimUID {
    		return nil, "", fmt.Errorf(
    			"found PV object %s but its pv.Spec.ClaimRef.UID %s does not point to claim.UID %s",
    			name,
    			pv.Spec.ClaimRef.UID,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  7. tensorflow/cc/saved_model/metrics.cc

    // loading the SavedModel.
    // Can hold one of the following string values:
    //  - "FOUND"
    //  - "NOT_FOUND"
    //  - "ERROR"
    auto* saved_model_found_fingerprint_on_load =
        monitoring::Gauge<std::string, 0>::New(
            "/tensorflow/core/saved_model/found_fingerprint_on_load",
            "Whether or not the fingerprint.pb file was found when loading the "
            "SavedModel.");
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 18 23:43:59 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/volumebinding/binder.go

    			}
    		}
    
    		// Check if pvc is fully bound
    		if !b.isPVCFullyBound(pvc) {
    			return false, nil
    		}
    	}
    
    	// All pvs and pvcs that we operated on are bound
    	logger.V(2).Info("All PVCs for pod are bound", "pod", klog.KObj(pod))
    	return true, nil
    }
    
    func (b *volumeBinder) isVolumeBound(logger klog.Logger, pod *v1.Pod, vol *v1.Volume) (bound bool, pvc *v1.PersistentVolumeClaim, err error) {
    	pvcName := ""
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 14:55:34 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/variant_model.adoc

       > Found multiple transforms that can produce a variant of project : with requested attributes:
           - color 'red'
           - shape 'round'
         Found the following transforms:
           - From 'configuration ':roundBlueLiquidElements'':
               - With source attributes:
                   - color 'blue'
                   - shape 'round'
                   - state 'liquid'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  10. src/internal/types/testdata/check/issues1.go

    // Copyright 2020 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.
    
    // This file contains regression tests for bugs found.
    
    package p
    
    import "io"
    import "context"
    
    func eql[T comparable](x, y T) bool {
    	return x == y
    }
    
    func _[X comparable, Y interface{comparable; m()}]() {
    	var x X
    	var y Y
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:56:37 UTC 2023
    - 6K bytes
    - Viewed (0)
Back to top