Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for Reveles (0.21 sec)

  1. tests/preload_suits_test.go

    	var level1 Level1
    	if err := DB.Preload("Level2s").Preload("Level2s.Level3s").Preload("Level2s.Level3s.Level4s").First(&level1).Error; err != nil {
    		t.Error(err)
    	}
    }
    
    func TestManyToManyPreloadForPointer(t *testing.T) {
    	type (
    		Level1 struct {
    			ID    uint
    			Value string
    		}
    		Level2 struct {
    			ID      uint
    			Value   string
    			Level1s []*Level1 `gorm:"many2many:levels;"`
    		}
    	)
    Go
    - Registered: Sun Apr 28 09:35:09 GMT 2024
    - Last Modified: Fri Mar 18 05:38:46 GMT 2022
    - 30.3K bytes
    - Viewed (0)
  2. istioctl/pkg/admin/istiodconfig.go

    		Short: "Manage istiod logging.",
    		Long:  "Retrieve or update logging levels of istiod components.",
    		Example: `  # Retrieve information about istiod logging levels.
      istioctl admin log
    
      # Retrieve information about istiod logging levels on a specific control plane pod.
      istioctl admin l istiod-5c868d8bdd-pmvgg
    
      # Update levels of the specified loggers.
      istioctl admin log --level ads:debug,authorization:debug
    
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Sat Apr 13 05:23:38 GMT 2024
    - 13.5K bytes
    - Viewed (0)
  3. istioctl/pkg/proxyconfig/proxyconfig.go

    		Short: "Retrieves logging levels of the Envoy in the specified pod",
    		Long:  "Retrieve information about logging levels of the Envoy instance in the specified pod, and update optionally",
    		Example: `  # Retrieve information about logging levels for a given pod from Envoy.
      istioctl proxy-config log <pod-name[.namespace]>
    
      # Update levels of the all loggers
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Tue Apr 16 03:28:36 GMT 2024
    - 48K bytes
    - Viewed (0)
  4. istioctl/pkg/root/root.go

    	IstioConfig = env.Register("ISTIOCONFIG", defaultIstioctlConfig,
    		"Default values for istioctl flags").Get()
    
    	LoggingOptions = defaultLogOptions()
    
    	// scope is for dev logging.  Warning: log levels are not set by --log_output_level until command is Run().
    	Scope = log.RegisterScope("cli", "istioctl")
    )
    
    func defaultLogOptions() *log.Options {
    	o := log.DefaultOptions()
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Tue Mar 26 20:38:10 GMT 2024
    - 1.5K bytes
    - Viewed (0)
  5. cmd/object-api-listobjects_test.go

    		// ListObjectsResult-36 list with nextmarker prefix and maxKeys set to 1.
    		36: {
    			IsTruncated: true,
    			Prefixes:    []string{"dir/day_id=2017-10-10/"},
    		},
    		// ListObjectsResult-37 list with prefix match 2 levels deep
    		37: {
    			IsTruncated: false,
    			Objects: []ObjectInfo{
    				{Name: "foo/201910/1112"},
    				{Name: "foo/201910/1122"},
    			},
    		},
    		// ListObjectsResult-38 list with prefix match 1 level deep
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Tue Jan 30 20:43:25 GMT 2024
    - 73.1K bytes
    - Viewed (0)
  6. internal/config/dns/etcd_dns.go

    		ks[i], ks[j] = ks[j], ks[i]
    	}
    	return strings.Join(ks, ".")
    }
    
    // Retrieves list of entries under the key passed.
    // Note that this method fetches entries upto only two levels deep.
    func (c *CoreDNS) list(key string, domain bool) ([]SrvRecord, error) {
    	ctx, cancel := context.WithTimeout(context.Background(), defaultContextTimeout)
    	r, err := c.etcdClient.Get(ctx, key, clientv3.WithPrefix())
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sun Jan 02 17:15:06 GMT 2022
    - 8.3K bytes
    - Viewed (0)
  7. istioctl/pkg/ztunnelconfig/ztunnelconfig.go

    		Use:   "log [<type>/]<name>[.<namespace>]",
    		Short: "Retrieves logging levels of the Ztunnel instance in the specified pod.",
    		Long:  "Retrieve information about logging levels of the Ztunnel instance in the specified pod, and update optionally.",
    		Example: `  # Retrieve information about logging levels from all Ztunnel pods
     istioctl x ztunnel-config log
    
     # Update levels of the all loggers for a specific Ztunnel pod
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Wed May 01 13:11:40 GMT 2024
    - 22.2K bytes
    - Viewed (0)
  8. cmd/erasure-server-pool.go

    		unlockOnDefer = true
    	}
    
    	checkPrecondFn := opts.CheckPrecondFn
    	opts.CheckPrecondFn = nil // do not need to apply pre-conditions at lower layer.
    	opts.NoLock = true        // no locks needed at lower levels for getObjectInfo()
    	objInfo, zIdx, err := z.getLatestObjectInfoWithIdx(ctx, bucket, object, opts)
    	if err != nil {
    		if objInfo.DeleteMarker {
    			if opts.VersionID == "" {
    				return &GetObjectReader{
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Fri Apr 26 06:32:14 GMT 2024
    - 80.1K bytes
    - Viewed (0)
Back to top