Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 71 for highest (0.23 sec)

  1. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	Description string `json:"description"`
    	// priority is an integer defining the relative importance of this column compared to others. Lower
    	// numbers are considered higher priority. Columns that may be omitted in limited space scenarios
    	// should be given a higher priority.
    	Priority int32 `json:"priority"`
    }
    
    // TableRow is an individual row in a table.
    // +protobuf=false
    type TableRow struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (1)
  2. go.sum

    github.com/onsi/gomega v1.33.1 h1:dsYjIxxSR755MDmKVsaFQTE22ChNBcuuTWgkUDSubOk=
    github.com/onsi/gomega v1.33.1/go.mod h1:U4R44UsT+9eLIaYRB2a5qajjtQYn0hauxvRm16AVYg0=
    github.com/opencontainers/go-digest v1.0.0 h1:apOUWs51W5PlhuyGyz9FCeeBIOUDA/6nW8Oi/yOhh5U=
    github.com/opencontainers/go-digest v1.0.0/go.mod h1:0JzlMkj0TRzQZfJkVvzbP0HBR3IKzErnv2BNG4W4MAM=
    github.com/opencontainers/image-spec v1.0.2 h1:9yCKha/T5XdGtO0q9Q9a6T5NUCsTn/DrBg0D7ufOcFM=
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:11 UTC 2024
    - 93.1K bytes
    - Viewed (0)
  3. src/reflect/type.go

    		for _, scan := range current {
    			t := scan.typ
    			if visited[t] {
    				// We've looked through this type before, at a higher level.
    				// That higher level would shadow the lower level we're now at,
    				// so this one can't be useful to us. Ignore it.
    				continue
    			}
    			visited[t] = true
    			for i := range t.Fields {
    				f := &t.Fields[i]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/testdata/swagger.json

              "type": "string",
              "default": ""
            },
            "priority": {
              "description": "priority is an integer defining the relative importance of this column compared to others. Lower numbers are considered higher priority. Columns that may be omitted in limited space scenarios should be given a priority greater than 0.",
              "type": "integer",
              "format": "int32"
            },
            "type": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 55.4K bytes
    - Viewed (0)
  5. cmd/kubelet/app/server.go

    // The drop-in configurations are processed in lexical order based on the file names. This means that the
    // configurations in files with lower numeric prefixes are applied first, followed by higher numeric prefixes.
    // For example, if the drop-in directory contains files named "10-config.conf" and "20-config.conf",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

        Type branch_result_type[] = {result_type};
        auto func_type = FunctionType::get(rewriter.getContext(), branch_args_type,
                                           branch_result_type);
    
        // Create functions in a higher scope before restoring the insertion point.
        // Additionally, create the SymbolTable before further modifying the module.
        auto original_point = rewriter.saveInsertionPoint();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/testing/watcher_tests.go

    		t.Fatalf("Watch failed: %v", err)
    	}
    
    	initSignal.Wait()
    }
    
    // RunOptionalTestProgressNotify tests ProgressNotify feature of ListOptions.
    // Given this feature is currently not explicitly used by higher layers of Kubernetes
    // (it rather is used by wrappers of storage.Interface to implement its functionalities)
    // this test is currently considered optional.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    ==== Forward compatibility
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  9. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    				metrics.StartedHostProcessContainersErrorsTotal.WithLabelValues(metricLabel, err.Error()).Inc()
    			}
    			startContainerResult.Fail(err, msg)
    			// known errors that are logged in other places are logged at higher levels here to avoid
    			// repetitive log spam
    			switch {
    			case err == images.ErrImagePullBackOff:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  10. cmd/iam-store.go

    			cache.iamSTSPolicyMap.Store(k, v)
    			return true
    		})
    
    		cache.updatedAt = time.Now()
    	}
    
    	return nil
    }
    
    // IAMStoreSys contains IAMStorageAPI to add higher-level methods on the storage
    // layer.
    type IAMStoreSys struct {
    	IAMStorageAPI
    
    	group *singleflight.Group
    }
    
    // HasWatcher - returns if the storage system has a watcher.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
Back to top