Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 88 for INITIALIZING (0.19 sec)

  1. platforms/documentation/docs/src/main/resources/header.html

                    <li><a class="nav-dropdown" data-toggle="collapse" aria-expanded="false">Tutorial</a>
                        <ul id="running-tutorial">
                            <li><a href="../userguide/part1_gradle_init.html">1. Initializing the Project</a></li>
                            <li><a href="../userguide/part2_gradle_tasks.html">2. Running Tasks</a></li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 35.6K bytes
    - Viewed (0)
  2. tensorflow/cc/tools/freeze_saved_model_test.cc

        (*meta_graph_def->mutable_signature_def())[key] = signature_def;
      }
    
      // Adds an initialized session to `saved_model_bundle` using `graph_def` and
      // initializing with `init_node`.
      Status InitializeSavedModelBundleSession(
          const GraphDef& graph_def, const string& init_node,
          SavedModelBundle* saved_model_bundle) {
        SessionOptions session_options;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 07 13:30:31 UTC 2022
    - 21.7K bytes
    - Viewed (0)
  3. cmd/admin-handlers_test.go

    	// reset global variables to start afresh.
    	resetTestGlobals()
    
    	// Set globalIsErasure to indicate that the setup uses an erasure
    	// code backend.
    	globalIsErasure = true
    
    	// Initializing objectLayer for HealFormatHandler.
    	objLayer, erasureDirs, xlErr := initTestErasureObjLayer(ctx)
    	if xlErr != nil {
    		cancel()
    		return nil, xlErr
    	}
    
    	// Initialize minio server config.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  4. src/runtime/signal_unix.go

    	sigaddset(&set, int(sig))
    	sigprocmask(_SIG_UNBLOCK, &set, nil)
    }
    
    // minitSignals is called when initializing a new m to set the
    // thread's alternate signal stack and signal mask.
    func minitSignals() {
    	minitSignalStack()
    	minitSignalMask()
    }
    
    // minitSignalStack is called when initializing a new m to set the
    // alternate signal stack. If the alternate signal stack is not set
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 16:04:54 UTC 2024
    - 45K bytes
    - Viewed (0)
  5. cmd/endpoint-ellipses.go

    	}
    	return totalSizes
    }
    
    // Parses all arguments and returns an endpointSet which is a collection
    // of endpoints following the ellipses pattern, this is what is used
    // by the object layer for initializing itself.
    func parseEndpointSet(setDriveCount uint64, args ...string) (ep endpointSet, err error) {
    	argPatterns := make([]ellipses.ArgPattern, len(args))
    	for i, arg := range args {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  6. cmd/signature-v4-utils_test.go

    		// creating an input HTTP request.
    		// Only the headers are relevant for this particular test.
    		inputReq, err := http.NewRequest(http.MethodGet, "http://example.com", nil)
    		if err != nil {
    			t.Fatalf("Error initializing input HTTP request: %v", err)
    		}
    		if testCase.inputQueryKey != "" {
    			q := inputReq.URL.Query()
    			q.Add(testCase.inputQueryKey, testCase.inputQueryValue)
    			if testCase.inputHeaderKey != "" {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 05 21:26:41 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  7. pkg/registry/rbac/rest/storage_rbac.go

    }
    
    func (p *PolicyData) EnsureRBACPolicy() genericapiserver.PostStartHookFunc {
    	return func(hookContext genericapiserver.PostStartHookContext) error {
    		// initializing roles is really important.  On some e2e runs, we've seen cases where etcd is down when the server
    		// starts, the roles don't initialize, and nothing works.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 14 03:25:19 UTC 2022
    - 18.5K bytes
    - Viewed (0)
  8. src/embed/embed.go

    //
    // FS implements fs.FS, so it can be used with any package that understands
    // file system interfaces, including net/http, text/template, and html/template.
    //
    // See the package documentation for more details about initializing an FS.
    type FS struct {
    	// The compiler knows the layout of this struct.
    	// See cmd/compile/internal/staticdata's WriteEmbed.
    	//
    	// The files list is sorted by name but not by simple string comparison.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 19:42:51 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  9. pkg/kubelet/logs/container_log_manager.go

    		),
    		monitoringPeriod: monitorInterval,
    	}, nil
    }
    
    // Start the container log manager.
    func (c *containerLogManager) Start() {
    	ctx := context.Background()
    	klog.InfoS("Initializing container log rotate workers", "workers", c.maxWorkers, "monitorPeriod", c.monitoringPeriod)
    	for i := 0; i < c.maxWorkers; i++ {
    		worker := i + 1
    		go c.processQueueItems(ctx, worker)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 15K bytes
    - Viewed (0)
  10. pkg/credentialprovider/plugin/plugin.go

    			}
    
    			return fmt.Errorf("error inspecting binary executable %s: %w", pluginBin, err)
    		}
    
    		plugin, err := newPluginProvider(pluginBinDir, provider)
    		if err != nil {
    			return fmt.Errorf("error initializing plugin provider %s: %w", provider.Name, err)
    		}
    
    		credentialprovider.RegisterCredentialProvider(provider.Name, plugin)
    	}
    
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 05 05:07:28 UTC 2024
    - 17.1K bytes
    - Viewed (0)
Back to top