Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 335 for initiatives (0.16 sec)

  1. .github/workflows/codeql-analysis.yml

        # the head of the pull request instead of the merge commit.
        - run: git checkout HEAD^2
          if: ${{ github.event_name == 'pull_request' }}
    
        # Initializes the CodeQL tools for scanning.
        - name: Initialize CodeQL
          uses: github/codeql-action/init@v1
          with:
            languages: ${{ matrix.language }}
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Fri Nov 17 21:22:20 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/phases/upgrade/preflight.go

    func (c CoreDNSCheck) Check() (warnings, errors []error) {
    	if err := c.f(c.client); err != nil {
    		return nil, []error{err}
    	}
    	return nil, nil
    }
    
    // RunCoreDNSMigrationCheck initializes checks related to CoreDNS migration.
    func RunCoreDNSMigrationCheck(client clientset.Interface, ignorePreflightErrors sets.Set[string]) error {
    	migrationChecks := []preflight.Checker{
    		&CoreDNSCheck{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 25 13:53:28 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/nodevolumelimits/non_csi.go

    	KubeMaxPDVols = "KUBE_MAX_PD_VOLS"
    )
    
    // AzureDiskName is the name of the plugin used in the plugin registry and configurations.
    const AzureDiskName = names.AzureDiskLimits
    
    // NewAzureDisk returns function that initializes a new plugin and returns it.
    func NewAzureDisk(ctx context.Context, _ runtime.Object, handle framework.Handle, fts feature.Features) (framework.Plugin, error) {
    	informerFactory := handle.SharedInformerFactory()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Dec 30 23:00:56 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  4. src/internal/coverage/stringtab/stringtab.go

    // counter-data files.
    
    // Writer implements a string table writing utility.
    type Writer struct {
    	stab   map[string]uint32
    	strs   []string
    	tmp    []byte
    	frozen bool
    }
    
    // InitWriter initializes a stringtab.Writer.
    func (stw *Writer) InitWriter() {
    	stw.stab = make(map[string]uint32)
    	stw.tmp = make([]byte, 64)
    }
    
    // Nentries returns the number of strings interned so far.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 11 12:40:42 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  5. internal/config/identity/openid/providercfg.go

    		ClientID:           getCfgVal(ClientID),
    		ClientSecret:       getCfgVal(ClientSecret),
    		RolePolicy:         getCfgVal(RolePolicy),
    	}
    }
    
    const (
    	keyCloakVendor = "keycloak"
    )
    
    // initializeProvider initializes if any additional vendor specific information
    // was provided, initialization will return an error initial login fails.
    func (p *providerCfg) initializeProvider(cfgGet func(string) string, transport http.RoundTripper) error {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  6. internal/logger/target/console/console.go

    		apiString, timeString, deploymentID, requestID, remoteHost, host, userAgent,
    		msg, tagString, strings.Join(trace, "\n"))
    
    	fmt.Fprintln(c.output, output)
    	return nil
    }
    
    // New initializes a new logger target
    // which prints log directly in the standard
    // output.
    func New(w io.Writer) *Target {
    	return &Target{output: w}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  7. src/hash/crc32/crc32.go

    //
    //    // archAvailableIEEE reports whether an architecture-specific CRC32-IEEE
    //    // algorithm is available.
    //    archAvailableIEEE() bool
    //
    //    // archInitIEEE initializes the architecture-specific CRC3-IEEE algorithm.
    //    // It can only be called if archAvailableIEEE() returns true.
    //    archInitIEEE()
    //
    //    // archUpdateIEEE updates the given CRC32-IEEE. It can only be called if
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 12 05:36:29 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/LoggingManagerInternal.java

        /**
         * Makes this log manager active, replacing the currently active log manager, if any. Applies any settings defined by this log manager. Initialises the logging system when there is no log manager currently active.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/examples/multipoint/multipoint.go

    		if value, ok := v.(*stateData); ok && value.data == "never bind" {
    			return framework.NewStatus(framework.Unschedulable, "pod is not permitted")
    		}
    	}
    	return nil
    }
    
    // New initializes a new plugin and returns it.
    func New(_ context.Context, _ *runtime.Unknown, _ framework.Handle) (framework.Plugin, error) {
    	return &CommunicatingPlugin{}, nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 09 03:43:17 UTC 2023
    - 3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/cc/save_variables.cc

    namespace quantization {
    namespace {
    
    using ::mlir::func::FuncOp;
    using ::mlir::tf_saved_model::GetInitializerFunction;
    using ::mlir::tf_saved_model::kTfSavedModelInitializerRestoreType;
    
    // Adds the tensor that initializes the variable through the provided
    // `assign_var_op` to the `bundle_writer` for saving to checkpoint. Returns the
    // shared name of the variable if a variable is saved successfully. If the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 03:36:55 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top