Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 157 for configurations (0.39 sec)

  1. cmd/batch-replicate.go

    	Tags          []BatchJobKV  `yaml:"tags,omitempty" json:"tags"`
    	Metadata      []BatchJobKV  `yaml:"metadata,omitempty" json:"metadata"`
    }
    
    // BatchJobReplicateFlags various configurations for replication job definition currently includes
    // - filter
    // - notify
    // - retry
    type BatchJobReplicateFlags struct {
    	Filter BatchReplicateFilter `yaml:"filter" json:"filter"`
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Wed Nov 22 18:51:46 GMT 2023
    - 6.3K bytes
    - Viewed (0)
  2. cmd/admin-handlers-idp-config.go

    		}
    		if !isUpdate && subSysTargetsSet.Contains(cfgTarget) {
    			return ErrAdminConfigIDPCfgNameAlreadyExists
    		}
    
    		return ErrNone
    	}
    
    	// For the default configuration name, since it will always be an available
    	// target, we need to check if a configuration value has been set previously
    	// to figure out if this is a valid create or update API call.
    
    	// This cannot really error (FIXME: improve the type for GetConfigInfo)
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 12.7K bytes
    - Viewed (0)
  3. istioctl/pkg/waypoint/waypoint.go

    	}
    	waypointDeleteCmd.Flags().BoolVar(&deleteAll, "all", false, "Delete all waypoints in the namespace")
    
    	waypointListCmd := &cobra.Command{
    		Use:   "list",
    		Short: "List managed waypoint configurations",
    		Long:  "List managed waypoint configurations in the cluster",
    		Example: `  # List all waypoints in a specific namespace
      istioctl x waypoint list --namespace default
    
      # List all waypoints in the cluster
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Wed May 01 16:16:40 GMT 2024
    - 15.2K bytes
    - Viewed (0)
  4. cmd/server-startup-msg.go

    	for _, arn := range globalLambdaTargetList.List(globalSite.Region) {
    		arnMsg += color.Bold(fmt.Sprintf("%s ", arn))
    	}
    	logger.Info(arnMsg + "\n")
    }
    
    // Prints bucket notification configurations.
    func printEventNotifiers() {
    	if globalNotificationSys == nil {
    		return
    	}
    
    	arns := globalEventNotifier.GetARNList(true)
    	if len(arns) == 0 {
    		return
    	}
    
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sat Mar 09 03:07:08 GMT 2024
    - 6.8K bytes
    - Viewed (0)
  5. istioctl/pkg/wait/wait.go

    				if err != nil {
    					return err
    				} else if float32(present)/float32(present+notpresent) >= threshold {
    					_, _ = fmt.Fprintf(cmd.OutOrStdout(), "Resource %s present on %d out of %d configurations across %d sidecars\n",
    						targetResource, present, present+notpresent, sdcnum)
    					return nil
    				}
    				select {
    				case newVersion := <-w.resultsChan:
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Sat Feb 17 12:24:17 GMT 2024
    - 10.1K bytes
    - Viewed (0)
  6. istioctl/pkg/writer/compare/comparator_test.go

    // limitations under the License.
    
    package compare
    
    import (
    	"bytes"
    	"os"
    	"testing"
    )
    
    // TestComparatorMatchingConfigs tests the scenario where Istiod and Envoy configurations match
    func TestComparatorMatchingSameConfigs(t *testing.T) {
    	cfg, err := os.ReadFile("testdata/configdump.json")
    	if err != nil {
    		t.Fatalf("Failed to read test data: %v", err)
    	}
    
    	var outputBuffer bytes.Buffer
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Tue Mar 12 10:02:09 GMT 2024
    - 2.3K bytes
    - Viewed (0)
  7. internal/config/identity/ldap/config.go

    			return l, err
    		}
    	}
    
    	// Lookup bind user configuration
    	l.LDAP.LookupBindDN = getCfgVal(LookupBindDN)
    	l.LDAP.LookupBindPassword = getCfgVal(LookupBindPassword)
    
    	// User DN search configuration
    	l.LDAP.UserDNSearchFilter = getCfgVal(UserDNSearchFilter)
    	l.LDAP.UserDNSearchBaseDistName = getCfgVal(UserDNSearchBaseDN)
    
    	// Group search params configuration
    	l.LDAP.GroupSearchFilter = getCfgVal(GroupSearchFilter)
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 25 21:28:16 GMT 2024
    - 7.9K bytes
    - Viewed (2)
  8. cmd/tier.go

    	}
    	config.drivercache[tierName] = d
    	return d, nil
    }
    
    // configReader returns a PutObjReader and ObjectOptions needed to save config
    // using a PutObject API. PutObjReader encrypts json encoded tier configurations
    // if KMS is enabled, otherwise simply yields the json encoded bytes as is.
    // Similarly, ObjectOptions value depends on KMS' status.
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Wed Apr 17 05:09:58 GMT 2024
    - 15.5K bytes
    - Viewed (0)
  9. internal/config/identity/openid/openid.go

    			return val
    		}
    
    		// In the past, when only one openID provider was allowed, there
    		// was no `enable` parameter - the configuration is turned off
    		// by clearing the values. With multiple providers, we support
    		// individually enabling/disabling provider configurations. If
    		// the enable parameter's value is non-empty, we use that
    		// setting, otherwise we treat it as enabled if some important
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Nov 16 04:42:31 GMT 2023
    - 16.5K bytes
    - Viewed (0)
  10. cmd/batch-rotate.go

    type BatchKeyRotateNotification struct {
    	Endpoint string `yaml:"endpoint" json:"endpoint"`
    	Token    string `yaml:"token" json:"token"`
    }
    
    // BatchJobKeyRotateFlags various configurations for replication job definition currently includes
    // - filter
    // - notify
    // - retry
    type BatchJobKeyRotateFlags struct {
    	Filter BatchKeyRotateFilter `yaml:"filter" json:"filter"`
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 14.2K bytes
    - Viewed (0)
Back to top