Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 6,081 for f$ (0.05 sec)

  1. pkg/volume/flexvolume/mounter.go

    	if err := addSecretsToOptions(extraOptions, f.spec, f.podNamespace, f.driverName, f.plugin.host); err != nil {
    		os.Remove(dir)
    		return err
    	}
    
    	// Implicit parameters
    	if mounterArgs.FsGroup != nil {
    		extraOptions[optionFSGroup] = strconv.FormatInt(int64(*mounterArgs.FsGroup), 10)
    	}
    
    	call.AppendSpec(f.spec, f.plugin.host, extraOptions)
    
    	_, err = call.Run()
    	if isCmdNotSupportedErr(err) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 03 19:34:37 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  2. src/fmt/format.go

    func (f *fmt) pad(b []byte) {
    	if !f.widPresent || f.wid == 0 {
    		f.buf.write(b)
    		return
    	}
    	width := f.wid - utf8.RuneCount(b)
    	if !f.minus {
    		// left padding
    		f.writePadding(width)
    		f.buf.write(b)
    	} else {
    		// right padding
    		f.buf.write(b)
    		f.writePadding(width)
    	}
    }
    
    // padString appends s to f.buf, padded on left (!f.minus) or right (f.minus).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  3. test/fixedbugs/issue31060.go

    // license that can be found in the LICENSE file.
    
    package p
    
    const (
    	f = 1.0
    	c = 1.0i
    
    	_ = ^f // ERROR "invalid operation|expected integer"
    	_ = ^c // ERROR "invalid operation|expected integer"
    
    	_ = f % f // ERROR "invalid operation|expected integer"
    	_ = c % c // ERROR "invalid operation|expected integer"
    
    	_ = f & f // ERROR "invalid operation|expected integer"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 17:46:55 UTC 2019
    - 901 bytes
    - Viewed (0)
  4. pkg/ctrlz/assets/static/js/jquery-3.2.1.slim.min.js

    d<c;d++)a[e++]=b[d];return a.length=e,a},grep:function(a,b,c){for(var d,e=[],f=0,g=a.length,h=!c;f<g;f++)d=!b(a[f],f),d!==h&&e.push(a[f]);return e},map:function(a,b,c){var d,e,f=0,h=[];if(w(a))for(d=a.length;f<d;f++)e=b(a[f],f,c),null!=e&&h.push(e);else for(f in a)e=b(a[f],f,c),null!=e&&h.push(e);return g.apply([],h)},guid:1,proxy:function(a,b){var c,d,e;if("string"==typeof b&&(c=a[b],b=a,a=c),r.isFunction(a))return d=f.call(arguments,2),e=function(){return a.apply(b||this,d.concat(f.call(argume...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 68K bytes
    - Viewed (0)
  5. src/math/arith_s390x_test.go

    		a := Abs(vf[i])
    		if f := Log10NoVec(a); !veryclose(log10[i], f) {
    			t.Errorf("Log10(%g) = %g, want %g", a, f, log10[i])
    		}
    	}
    	if f := Log10NoVec(E); f != Log10E {
    		t.Errorf("Log10(%g) = %g, want %g", E, f, Log10E)
    	}
    	for i := 0; i < len(vflogSC); i++ {
    		if f := Log10NoVec(vflogSC[i]); !alike(logSC[i], f) {
    			t.Errorf("Log10(%g) = %g, want %g", vflogSC[i], f, logSC[i])
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 08 19:52:30 UTC 2017
    - 10.8K bytes
    - Viewed (0)
  6. test/fixedbugs/issue31053.dir/main.go

    	_ = f.DoneChan // ERROR "f.DoneChan undefined .type f1.Foo has no field or method DoneChan."
    	_ = f.Name
    	_ = f.name          // ERROR "f.name undefined .type f1.Foo has no field or method name, but does have Name."
    	_ = f.noSuchPrivate // ERROR "f.noSuchPrivate undefined .type f1.Foo has no field or method noSuchPrivate."
    	_ = f.NoSuchPublic  // ERROR "f.NoSuchPublic undefined .type f1.Foo has no field or method NoSuchPublic."
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 28 07:44:07 UTC 2020
    - 2.7K bytes
    - Viewed (0)
  7. src/compress/flate/inflate.go

    		if f.err = f.readHuffman(); f.err != nil {
    			break
    		}
    		f.hl = &f.h1
    		f.hd = &f.h2
    		f.huffmanBlock()
    	default:
    		// 3 is reserved.
    		f.err = CorruptInputError(f.roffset)
    	}
    }
    
    func (f *decompressor) Read(b []byte) (int, error) {
    	for {
    		if len(f.toRead) > 0 {
    			n := copy(b, f.toRead)
    			f.toRead = f.toRead[n:]
    			if len(f.toRead) == 0 {
    				return n, f.err
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 23:20:03 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  8. pkg/volume/testing/volume_host.go

    }
    
    func (f *fakeVolumeHost) GetKubeClient() clientset.Interface {
    	return f.kubeClient
    }
    
    func (f *fakeVolumeHost) GetMounter(pluginName string) mount.Interface {
    	return f.mounter
    }
    
    func (f *fakeVolumeHost) GetSubpather() subpath.Interface {
    	return f.subpather
    }
    
    func (f *fakeVolumeHost) GetPluginMgr() *VolumePluginMgr {
    	return f.pluginMgr
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  9. src/go/types/mono_test.go

    }
    
    // TODO(mdempsky): Validate specific error messages and positioning.
    
    var bads = []string{
    	"func F[T any](x T) { F(&x) }",
    	"func F[T any]() { F[*T]() }",
    	"func F[T any]() { F[[]T]() }",
    	"func F[T any]() { F[[1]T]() }",
    	"func F[T any]() { F[chan T]() }",
    	"func F[T any]() { F[map[*T]int]() }",
    	"func F[T any]() { F[map[error]T]() }",
    	"func F[T any]() { F[func(T)]() }",
    	"func F[T any]() { F[func() T]() }",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 28 17:58:07 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/check.go

    	"math/bits"
    )
    
    // checkFunc checks invariants of f.
    func checkFunc(f *Func) {
    	blockMark := make([]bool, f.NumBlocks())
    	valueMark := make([]bool, f.NumValues())
    
    	for _, b := range f.Blocks {
    		if blockMark[b.ID] {
    			f.Fatalf("block %s appears twice in %s!", b, f.Name)
    		}
    		blockMark[b.ID] = true
    		if b.Func != f {
    			f.Fatalf("%s.Func=%s, want %s", b, b.Func.Name, f.Name)
    		}
    
    		for i, e := range b.Preds {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 16:41:23 UTC 2024
    - 17.6K bytes
    - Viewed (0)
Back to top