Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 34 for creators (0.14 sec)

  1. src/cmd/go/internal/load/pkg.go

    // in GOPATH mode, and modload.loaded (accessed via modload.Lookup) may be
    // modified by modload.LoadPackages.
    type preload struct {
    	cancel chan struct{}
    	sema   chan struct{}
    }
    
    // newPreload creates a new preloader. flush must be called later to avoid
    // accessing global state while it is being modified.
    func newPreload() *preload {
    	pre := &preload{
    		cancel: make(chan struct{}),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  2. cluster/gce/util.sh

        gcloud compute instances add-access-config "${NAME}" \
          --project "${PROJECT}" --zone "${ZONE}" \
          --access-config-name "${ACCESS_CONFIG_NAME}" \
          --address "${IP_ADDR}"
      fi
    }
    
    # Creates load balancer in front of apiserver if it doesn't exists already. Assumes there's only one
    # existing master replica.
    #
    # Assumes:
    #   PROJECT
    #   MASTER_NAME
    #   ZONE
    #   REGION
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

          """
    
          out = math_ops.matmul(input_tensor, self.filters)
          return {'output': out}
    
      def _simple_model_data_gen(self) -> repr_dataset.RepresentativeDataset:
        """Creates an interable of representative samples.
    
        Yields:
          Representative samples, which is basically a mapping of: input key ->
          input value.
        """
        for _ in range(8):
          yield {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  4. src/runtime/proc.go

    		// schedinit before parsedebugvars.
    		return
    	}
    	mp.profStack = makeProfStackFP()
    	mp.mLockProfile.stack = makeProfStackFP()
    }
    
    // makeProfStackFP creates a buffer large enough to hold a maximum-sized stack
    // trace as well as any additional frames needed for frame pointer unwinding
    // with delayed inline expansion.
    func makeProfStackFP() []uintptr {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  5. cmd/admin-handlers.go

    			mapIfNotPresent(hostAnonymizer, schemePfx+currentHostPortPath, newHostPortPath)
    		}
    
    		// Full url
    		hostAnonymizer[currentURL] = schemePfx + newHostPortPath
    	}
    }
    
    // createHostAnonymizer - Creates a map of various strings to corresponding anonymized names
    func createHostAnonymizer() map[string]string {
    	if !globalIsDistErasure {
    		return createHostAnonymizerForFSMode()
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  6. pkg/controller/job/job_controller_test.go

    				{"0", v1.PodSucceeded},
    				{"5", v1.PodRunning},
    				{"6", v1.PodSucceeded},
    				{"7", v1.PodPending},
    				{"8", v1.PodFailed},
    			},
    			expectedCreations:     0, // only one of creations and deletions can happen in a sync
    			expectedSucceeded:     1,
    			expectedDeletions:     2,
    			expectedCompletedIdxs: "0",
    			expectedActive:        0,
    			expectedFailed:        0,
    			expectedPodPatches:    5,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  7. doc/go1.17_spec.html

    	Polar    = polar    // Polar and polar denote identical types
    )
    </pre>
    
    
    <h4 id="Type_definitions">Type definitions</h4>
    
    <p>
    A type definition creates a new, distinct type with the same
    <a href="#Types">underlying type</a> and operations as the given type,
    and binds an identifier to it.
    </p>
    
    <pre class="ebnf">
    TypeDef = identifier Type .
    </pre>
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  8. pkg/controller/garbagecollector/garbagecollector_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    	assert.Equal(t, 0, len(gc.dependencyGraphBuilder.monitors))
    
    	// Make sure resource monitor syncing creates and stops resource monitors.
    	tweakableRM.Add(schema.GroupVersionKind{Group: "tpr.io", Version: "v1", Kind: "unknown"}, nil)
    	err = gc.resyncMonitors(logger, twoResources)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  9. pkg/controller/daemon/daemon_controller_test.go

    	if len(fakePodControl.Templates) != expectedCreates {
    		return fmt.Errorf("Unexpected number of creates.  Expected %d, saw %d\n", expectedCreates, len(fakePodControl.Templates))
    	}
    	if len(fakePodControl.DeletePodName) != expectedDeletes {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  10. pkg/config/validation/validation.go

    			}
    		}
    		if duplicateMatches == len(route.Match) {
    			reportUnreachable(routeName(route, rulen), "all matches used by prior rules")
    		}
    	}
    }
    
    // asJSON() creates a JSON serialization of a match, to use for match comparison.  We don't use the JSON itself.
    func asJSON(data any) string {
    	// Remove the name, so we can create a serialization that only includes traffic routing config
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
Back to top