Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 416 for flagstr (0.18 sec)

  1. cmd/kube-proxy/app/server_test.go

    				// Flag and config get merged with command line flags first.
    				c.Logging.VModule = append([]logsapi.VModuleItem{
    					{
    						FilePattern: "goo.go",
    						Verbosity:   8,
    					},
    				}, c.Logging.VModule...)
    				return c
    			}(),
    		},
    	} {
    		t.Run(name, func(t *testing.T) {
    			options := NewOptions()
    			fs := new(pflag.FlagSet)
    			options.AddFlags(fs)
    			flags := tc.flags
    			if len(tc.config) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/SmbTransport.java

            }
        }
        void send( ServerMessageBlock request, ServerMessageBlock response ) throws SmbException {
    
            connect(); /* must negotiate before we can test flags2, useUnicode, etc */
    
            request.flags2 |= flags2;
            request.useUnicode = useUnicode;
            request.response = response; /* needed by sign */
            if (request.digest == null)
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 31.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/PPC64Ops.go

    		{name: "CMP", argLength: 2, reg: gp2cr, asm: "CMP", typ: "Flags"},     // arg0 compare to arg1
    		{name: "CMPU", argLength: 2, reg: gp2cr, asm: "CMPU", typ: "Flags"},   // arg0 compare to arg1
    		{name: "CMPW", argLength: 2, reg: gp2cr, asm: "CMPW", typ: "Flags"},   // arg0 compare to arg1
    		{name: "CMPWU", argLength: 2, reg: gp2cr, asm: "CMPWU", typ: "Flags"}, // arg0 compare to arg1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/printf/printf.go

    	}
    }
    
    // parseFlags accepts any printf flags.
    func (s *formatState) parseFlags() {
    	for s.nbytes < len(s.format) {
    		switch c := s.format[s.nbytes]; c {
    		case '#', '0', '+', '-', ' ':
    			s.flags = append(s.flags, c)
    			s.nbytes++
    		default:
    			return
    		}
    	}
    }
    
    // scanNum advances through a decimal number if present.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  5. src/cmd/doc/doc_test.go

    		}
    	}
    	// Make sure math/rand does have the symbol.
    	{
    		var flagSet flag.FlagSet
    		err := do(&b, &flagSet, []string{"math/rand.float64"})
    		if err != nil {
    			t.Errorf("unexpected error %q from math/rand.float64", err)
    		}
    	}
    	// Try the shorthand.
    	{
    		var flagSet flag.FlagSet
    		err := do(&b, &flagSet, []string{"rand.float64"})
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:16:55 UTC 2023
    - 31.2K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/internal/driver/cli.go

    			l = append(l, *s)
    		}
    	}
    	return l
    }
    
    // installConfigFlags creates command line flags for configuration
    // fields and returns a function which can be called after flags have
    // been parsed to copy any flags specified on the command line to
    // *cfg.
    func installConfigFlags(flag plugin.FlagSet, cfg *config) func() error {
    	// List of functions for setting the different parts of a config.
    	var setters []func()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  7. src/regexp/syntax/regexp.go

    		*flags = make(map[*Regexp]printFlags)
    	}
    	(*flags)[start] = f
    	(*flags)[last] |= flagOff // maybe start==last
    }
    
    // calcFlags calculates the flags to print around each subexpression in re,
    // storing that information in (*flags)[sub] for each affected subexpression.
    // The first time an entry needs to be written to *flags, calcFlags allocates the map.
    // calcFlags also calculates the flags that must be active or can't be active
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:51 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  8. pkg/proxy/ipvs/util/ipvs_linux_test.go

    		expectError   bool
    		reason        string
    	}{
    		{
    			libipvs.Service{
    				Flags: 0x0,
    			},
    			VirtualServer{},
    			true,
    			fmt.Sprintf("IPVS Service Flags should include %x, got 0x0", FlagHashed),
    		},
    		{
    			libipvs.Service{
    				Flags: 0x1,
    			},
    			VirtualServer{},
    			true,
    			fmt.Sprintf("IPVS Service Flags should include %x, got 0x1", FlagHashed),
    		},
    		{
    			libipvs.Service{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 27 16:37:50 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/options/server_run_options.go

    			allErrors = append(allErrors, err)
    		}
    	}
    	return errors.NewAggregate(allErrors)
    }
    
    // AddUniversalFlags adds flags for a specific APIServer to the specified FlagSet
    func (s *ServerRunOptions) AddUniversalFlags(fs *pflag.FlagSet) {
    	// Note: the weird ""+ in below lines seems to be the only way to get gofmt to
    	// arrange these text blocks sensibly. Grrr.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 21:53:51 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/internal/http2/Http2Writer.kt

      ) {
        this.withLock {
          if (closed) throw IOException("closed")
          var flags = FLAG_NONE
          if (outFinished) flags = flags or FLAG_END_STREAM
          dataFrame(streamId, flags, source, byteCount)
        }
      }
    
      @Throws(IOException::class)
      fun dataFrame(
        streamId: Int,
        flags: Int,
        buffer: Buffer?,
        byteCount: Int,
      ) {
        frameHeader(
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 11.3K bytes
    - Viewed (0)
Back to top