Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 179 for fmtE (0.22 sec)

  1. pkg/controller/volume/persistentvolume/pv_controller.go

    		return fmt.Errorf("storageClassName does not match")
    	}
    
    	if storagehelpers.CheckVolumeModeMismatches(&claim.Spec, &volume.Spec) {
    		return fmt.Errorf("incompatible volumeMode")
    	}
    
    	if !storagehelpers.CheckAccessModes(claim, volume) {
    		return fmt.Errorf("incompatible accessMode")
    	}
    
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  2. src/encoding/json/decode_test.go

    	return []byte(fmt.Sprintf(`"Z%.2x"`, byte(b))), nil
    }
    
    func (b *byteWithMarshalJSON) UnmarshalJSON(data []byte) error {
    	if len(data) != 5 || data[0] != '"' || data[1] != 'Z' || data[4] != '"' {
    		return fmt.Errorf("bad quoted string")
    	}
    	i, err := strconv.ParseInt(string(data[2:4]), 16, 8)
    	if err != nil {
    		return fmt.Errorf("bad hex")
    	}
    	*b = byteWithMarshalJSON(i)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:40:14 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modload/init.go

    func CheckGodebug(verb, k, v string) error {
    	if strings.ContainsAny(k, " \t") {
    		return fmt.Errorf("key contains space")
    	}
    	if strings.ContainsAny(v, " \t") {
    		return fmt.Errorf("value contains space")
    	}
    	if strings.ContainsAny(k, ",") {
    		return fmt.Errorf("key contains comma")
    	}
    	if strings.ContainsAny(v, ",") {
    		return fmt.Errorf("value contains comma")
    	}
    	if k == "default" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  4. pkg/kubelet/kuberuntime/kuberuntime_container.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package kuberuntime
    
    import (
    	"context"
    	"errors"
    	"fmt"
    	"io"
    	"math/rand"
    	"net/url"
    	"os"
    	"path/filepath"
    	"regexp"
    	goruntime "runtime"
    	"sort"
    	"strconv"
    	"strings"
    	"sync"
    	"time"
    
    	crierror "k8s.io/cri-api/pkg/errors"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  5. src/cmd/cgo/gcc.go

    	for _, n := range names {
    		if n.Kind == "fconst" {
    			fmt.Fprintf(&b, "\t%s,\n", n.C)
    		} else {
    			fmt.Fprintf(&b, "\t0,\n")
    		}
    	}
    	fmt.Fprintf(&b, "\t1\n")
    	fmt.Fprintf(&b, "};\n")
    
    	// do the same work for strings.
    	for i, n := range names {
    		if n.Kind == "sconst" {
    			fmt.Fprintf(&b, "const char __cgodebug_str__%d[] = %s;\n", i, n.C)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  6. src/cmd/internal/testdir/testdir_test.go

    			}
    		}
    		if !matched {
    			errs = append(errs, fmt.Errorf("%s:%d: no match for %#q in:\n\t%s", we.file, we.lineNum, we.reStr, strings.Join(out[n:], "\n\t")))
    			continue
    		}
    	}
    
    	if len(out) > 0 {
    		errs = append(errs, fmt.Errorf("Unmatched Errors:"))
    		for _, errLine := range out {
    			errs = append(errs, fmt.Errorf("%s", errLine))
    		}
    	}
    
    	if len(errs) == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modload/load.go

    	}
    
    	var buf strings.Builder
    	for i := len(stack) - 1; i >= 0; i-- {
    		p := stack[i]
    		fmt.Fprint(&buf, p.path)
    		if p.testOf != nil {
    			fmt.Fprint(&buf, ".test")
    		}
    		if i > 0 {
    			if stack[i-1].testOf == p {
    				fmt.Fprint(&buf, " tested by\n\t")
    			} else {
    				fmt.Fprint(&buf, " imports\n\t")
    			}
    		}
    	}
    	return buf.String()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    		return nil, fmt.Errorf("add claim parameters cache indexer: %w", err)
    	}
    	if err := pl.classParametersIndexer.AddIndexers(cache.Indexers{generatedFromIndex: classParametersGeneratedFromIndexFunc}); err != nil {
    		return nil, fmt.Errorf("add class parameters cache indexer: %w", err)
    	}
    
    	return pl, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  9. pkg/volume/csi/csi_mounter_test.go

    		volDataKey.seLinuxMountContext: seLinuxMountContext,
    	}
    	if err := os.MkdirAll(mountPath, 0755); err != nil {
    		return fmt.Errorf("failed to create dir for volume info file: %s", err)
    	}
    	if err := saveVolumeData(mountPath, volDataFileName, volData); err != nil {
    		return fmt.Errorf("failed to save volume info file: %s", err)
    	}
    	return nil
    }
    
    func TestMounterGetPath(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  10. src/crypto/tls/tls_test.go

    	if n != 6 || err != nil || string(buf) != "foobar" {
    		return fmt.Errorf("Read = %d, %v, data %q; want 6, nil, foobar", n, err, buf)
    	}
    
    	srv.Write([]byte("abcdef"))
    	srv.Close()
    	time.Sleep(delay)
    	n, err = conn.Read(buf)
    	if n != 6 || string(buf) != "abcdef" {
    		return fmt.Errorf("Read = %d, buf= %q; want 6, abcdef", n, buf)
    	}
    	if err != io.EOF {
    		return fmt.Errorf("Second Read error = %v; want io.EOF", err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
Back to top