Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 64 of 64 for flagstr (0.11 sec)

  1. src/go/printer/testdata/parser.go

    // parser is invoked through one of the Parse* functions.
    
    package parser
    
    import (
    	"fmt"
    	"go/ast"
    	"go/scanner"
    	"go/token"
    )
    
    // The mode parameter to the Parse* functions is a set of flags (or 0).
    // They control the amount of source code parsed and other optional
    // parser functionality.
    const (
    	PackageClauseOnly uint = 1 << iota // parsing stops after package clause
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/sidecar_simulation_test.go

    				t.Run(tt.name, func(t *testing.T) {
    					if tt.oldestWins {
    						test.SetForTest(t, &features.PersistOldestWinsHeuristicForVirtualServiceHostMatching, true)
    					} else {
    						t.Parallel() // feature flags and parallel tests don't mix
    					}
    					cfg := knownServices
    					for _, tc := range tt.cfg {
    						cfg = cfg + "\n---\n" + tc.Config(t, variant)
    					}
    					istio, k, err := crd.ParseInputs(cfg)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  3. docs/bucket/notifications/README.md

    ```py
    #!/usr/bin/env python3
    from __future__ import print_function
    import paho.mqtt.client as mqtt
    
    # This is the Subscriber
    
    def on_connect(client, userdata, flags, rc):
      print("Connected with result code "+str(rc))
      # qos level is set to 1
      client.subscribe("minio", 1)
    
    def on_message(client, userdata, msg):
        print(msg.payload)
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 84K bytes
    - Viewed (0)
  4. src/math/all_test.go

    	1023,
    }
    
    // Test cases were generated with Berkeley TestFloat-3e/testfloat_gen.
    // http://www.jhauser.us/arithmetic/TestFloat.html.
    // The default rounding mode is selected (nearest/even), and exception flags are ignored.
    var fmaC = []struct{ x, y, z, want float64 }{
    	// Large exponent spread
    	{-3.999999999999087, -1.1123914289620494e-16, -7.999877929687506, -7.999877929687505},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 07 17:39:26 UTC 2023
    - 86.8K bytes
    - Viewed (0)
Back to top