Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 722 for place (0.1 sec)

  1. cmd/kubeadm/app/apis/kubeadm/v1beta3/register.go

    	AddToScheme = localSchemeBuilder.AddToScheme
    )
    
    func init() {
    	// We only register manually written functions here. The registration of the
    	// generated functions takes place in the generated files. The separation
    	// makes the code compile even when the generated files are missing.
    	localSchemeBuilder.Register(addKnownTypes, addDefaultingFuncs)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 03 17:11:43 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  2. guava-gwt/src/com/google/common/cache/Cache.gwt.xml

      <exclude name="**/testing/**"/>
    </source>
    
    <!--
        We used to set this only for packages that had manual supersource. That
        worked everywhere that I know of except for one place: when running the GWT
        util.concurrent tests under Guava.
    
        The problem is that GWT responds poorly to two .gwt.xml files in the same
        Java package; see https://goo.gl/pRV3Yn for details.
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jan 06 15:30:58 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  3. src/cmd/fix/doc.go

    Usage:
    
    	go tool fix [-r name,...] [path ...]
    
    Without an explicit path, fix reads standard input and writes the
    result to standard output.
    
    If the named path is a file, fix rewrites the named files in place.
    If the named path is a directory, fix rewrites all .go files in that
    directory tree.  When fix rewrites a file, it prints a line to standard
    error giving the name of the file and the rewrite applied.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/admission/config_test.go

    	apiserverapiv1 "k8s.io/apiserver/pkg/apis/apiserver/v1"
    	apiserverapiv1alpha1 "k8s.io/apiserver/pkg/apis/apiserver/v1alpha1"
    )
    
    func TestReadAdmissionConfiguration(t *testing.T) {
    	// create a place holder file to hold per test config
    	configFile, err := os.CreateTemp("", "admission-plugin-config")
    	if err != nil {
    		t.Fatalf("unexpected err: %v", err)
    	}
    	defer os.Remove(configFile.Name())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 15:48:39 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  5. pkg/kubelet/metrics/collectors/volume_stats_test.go

    	return &i
    }
    
    func TestVolumeStatsCollector(t *testing.T) {
    	ctx := context.Background()
    	// Fixed metadata on type and help text. We prepend this to every expected
    	// output so we only have to modify a single place when doing adjustments.
    	const metadata = `
    		# HELP kubelet_volume_stats_available_bytes [ALPHA] Number of available bytes in the volume
    		# TYPE kubelet_volume_stats_available_bytes gauge
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 9.5K bytes
    - Viewed (1)
  6. staging/src/k8s.io/apiserver/pkg/server/deleted_kinds.go

    }
    
    // ResourceExpirationEvaluator indicates whether or not a resource should be served.
    type ResourceExpirationEvaluator interface {
    	// RemoveDeletedKinds inspects the storage map and modifies it in place by removing storage for kinds that have been deleted.
    	// versionedResourcesStorageMap mirrors the field on APIGroupInfo, it's a map from version to resource to the storage.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 16 03:02:49 UTC 2022
    - 7.6K bytes
    - Viewed (0)
  7. src/slices/sort_benchmark_test.go

    			// Presort the slice so all benchmark iterations are identical.
    			slices.SortFunc(structs, cmpFunc)
    			b.ResetTimer()
    			for i := 0; i < b.N; i++ {
    				// Sort the slice twice because slices.SortFunc modifies the slice in place.
    				slices.SortFunc(structs, func(a, b *myStruct) int { return cmpFunc(b, a) })
    				slices.SortFunc(structs, cmpFunc)
    			}
    		})
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 23:39:07 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. src/runtime/time_windows_386.s

    	#define delta 116444736000000000
    	SUBL	$(delta & 0xFFFFFFFF), AX
    	SBBL $(delta >> 32), DX
    
    	// nano/100 = DX:AX
    	// split into two decimal halves by div 1e9.
    	// (decimal point is two spots over from correct place,
    	// but we avoid overflow in the high word.)
    	MOVL	$1000000000, CX
    	DIVL	CX
    	MOVL	AX, DI
    	MOVL	DX, SI
    
    	// DI = nano/100/1e9 = nano/1e11 = sec/100, DX = SI = nano/100%1e9
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 17:19:45 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/file/DuplicatesStrategy.java

         * <p>
         * If an attempt is made to create a duplicate file/entry during an operation, ignore the item.
         * This will leave the file/entry that was first copied/created in place.
         */
        EXCLUDE,
    
        /**
         * Do not attempt to prevent duplicates, but log a warning message when multiple items
         * are to be created at the same path.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 18 17:47:56 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/api/v2/tf_dialect_to_executor.h

    #include "tensorflow/core/platform/status.h"
    
    namespace tensorflow {
    namespace tf2xla {
    namespace v2 {
    
    // Given the input Module op that's in the Tensorflow Dialect, convert the MLIR
    // module in place to the Tensorflow Executor Dialect. Returns an OK Status if
    // success, otherwise failure with an error message.
    // The Tensorflow Executor Dialect is required to export an MLIR module to a
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 03 23:19:33 UTC 2023
    - 2.2K bytes
    - Viewed (0)
Back to top