Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 255 for wrappersym (0.15 sec)

  1. src/runtime/race/output_test.go

    Goroutine [0-9] \(running\) created at:
      main\.main\(\)
          .*/main.go:[0-9]+ \+0x[0-9,a-f]+
    ==================`}},
    	// Test symbolizing wrappers. Both (*T).f and main.gowrap1 are wrappers.
    	// go.dev/issue/60245
    	{"wrappersym", "run", "", "atexit_sleep_ms=0", `
    package main
    import "sync"
    var wg sync.WaitGroup
    var x int
    func main() {
    	f := (*T).f
    	wg.Add(2)
    	go f(new(T))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 25 20:44:25 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  2. pkg/proto/types.go

    // limitations under the License.
    
    package proto
    
    import (
    	wrappers "google.golang.org/protobuf/types/known/wrapperspb"
    )
    
    var (
    	// BoolTrue is a bool true pointer of types.BoolValue.
    	BoolTrue = &wrappers.BoolValue{
    		Value: true,
    	}
    
    	// BoolFalse is a bool false pointer of types.BoolValue.
    	BoolFalse = &wrappers.BoolValue{
    		Value: false,
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 19 21:53:59 UTC 2021
    - 902 bytes
    - Viewed (0)
  3. pkg/scheduler/testing/wrappers.go

    carlory <******@****.***> 1714386983 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 42.1K bytes
    - Viewed (0)
  4. pilot/pkg/model/telemetry_metric_test.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package model
    
    import (
    	"testing"
    
    	wrappers "google.golang.org/protobuf/types/known/wrapperspb"
    
    	meshconfig "istio.io/api/mesh/v1alpha1"
    	tpb "istio.io/api/telemetry/v1alpha1"
    	"istio.io/istio/pkg/config/mesh"
    	"istio.io/istio/pkg/test/util/assert"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 16 03:24:36 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/route/retry/retry.go

    	"strings"
    
    	route "github.com/envoyproxy/go-control-plane/envoy/config/route/v3"
    	previouspriorities "github.com/envoyproxy/go-control-plane/envoy/extensions/retry/priority/previous_priorities/v3"
    	wrappers "google.golang.org/protobuf/types/known/wrapperspb"
    
    	networking "istio.io/api/networking/v1alpha3"
    	"istio.io/istio/pilot/pkg/util/protoconv"
    	xdsfilters "istio.io/istio/pilot/pkg/xds/filters"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 5K bytes
    - Viewed (0)
  6. pkg/bootstrap/option/convert.go

    }
    
    // TCPKeepalive wraps is a thin JSON for xDS proto
    type TCPKeepalive struct {
    	KeepaliveProbes   *wrappers.UInt32Value `json:"keepalive_probes,omitempty"`
    	KeepaliveTime     *wrappers.UInt32Value `json:"keepalive_time,omitempty"`
    	KeepaliveInterval *wrappers.UInt32Value `json:"keepalive_interval,omitempty"`
    }
    
    // UpstreamConnectionOptions wraps is a thin JSON for xDS proto
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 00:35:05 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  7. pilot/pkg/model/proxy_config_test.go

    // limitations under the License.
    
    package model
    
    import (
    	"testing"
    	"time"
    
    	"google.golang.org/protobuf/proto"
    	"google.golang.org/protobuf/types/known/durationpb"
    	wrappers "google.golang.org/protobuf/types/known/wrapperspb"
    
    	"istio.io/api/annotation"
    	meshconfig "istio.io/api/mesh/v1alpha1"
    	"istio.io/api/networking/v1beta1"
    	istioTypes "istio.io/api/type/v1beta1"
    	"istio.io/istio/pkg/config"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 21 01:23:19 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/loadbalancer/loadbalancer_test.go

    								HostIdentifier: buildEndpoint("1.1.1.1"),
    								LoadBalancingWeight: &wrappers.UInt32Value{
    									Value: 1,
    								},
    							},
    							{
    								HostIdentifier: buildEndpoint("2.2.2.2"),
    								LoadBalancingWeight: &wrappers.UInt32Value{
    									Value: 1,
    								},
    							},
    						},
    						LoadBalancingWeight: &wrappers.UInt32Value{
    							Value: 2,
    						},
    						Priority: 0,
    					},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/match/match.go

    import (
    	xds "github.com/cncf/xds/go/xds/core/v3"
    	matcher "github.com/cncf/xds/go/xds/type/matcher/v3"
    	network "github.com/envoyproxy/go-control-plane/envoy/extensions/matching/common_inputs/network/v3"
    	wrappers "google.golang.org/protobuf/types/known/wrapperspb"
    
    	"istio.io/istio/pilot/pkg/features"
    	"istio.io/istio/pilot/pkg/util/protoconv"
    	"istio.io/istio/pkg/log"
    )
    
    var (
    	DestinationPort = &xds.TypedExtensionConfig{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  10. operator/pkg/apis/istio/v1alpha1/validation/validation_test.go

    // limitations under the License.
    
    package validation_test
    
    import (
    	"os"
    	"path/filepath"
    	"reflect"
    	"strings"
    	"testing"
    
    	wrappers "google.golang.org/protobuf/types/known/wrapperspb"
    
    	v1alpha12 "istio.io/api/operator/v1alpha1"
    	"istio.io/istio/operator/pkg/apis/istio/v1alpha1"
    	"istio.io/istio/operator/pkg/apis/istio/v1alpha1/validation"
    	"istio.io/istio/operator/pkg/helm"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 23 09:10:55 UTC 2023
    - 8.7K bytes
    - Viewed (0)
Back to top