Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 141 for convlit (0.13 sec)

  1. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources_test.go

    			prepare: prepare{
    				prebind: change{
    					scheduling: func(in *resourcev1alpha2.PodSchedulingContext) *resourcev1alpha2.PodSchedulingContext {
    						// This does not actually conflict with setting the
    						// selected node, but because the plugin is not using
    						// patching yet, Update nonetheless fails.
    						return st.FromPodSchedulingContexts(in).
    							Label("hello", "world").
    							Obj()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         *
         * @param path The path to convert.
         * @return The absolute path.
         */
        String absoluteProjectPath(String path);
    
        /**
         * <p>Converts a name to a project path relative to this project.</p>
         *
         * @param path The path to convert.
         * @return The relative path.
         */
        String relativeProjectPath(String path);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    If the resource is not created via `project.resources`, then it may not have a backing file.
    Creating a TAR tree from a resource with no backing file has been deprecated.
    Instead, convert the resource to a file and use `project.tarTree()` on the file.
    To convert the resource to a file you can use a custom task or use dependency management to download the file via a URL.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/load.go

    					rs = tidy
    				} else {
    					conflict := Conflict{
    						Path: mg.g.FindPath(func(m module.Version) bool {
    							return m.Path == "go" && m.Version == v
    						})[1:],
    						Constraint: module.Version{Path: "go", Version: ld.TidyGoVersion},
    					}
    					msg := conflict.Summary()
    					if cfg.BuildV {
    						msg = conflict.String()
    					}
    					ld.error(errors.New(msg))
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/testdata/swagger.json

              "default": ""
            }
          }
        },
        "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceConversion": {
          "description": "CustomResourceConversion describes how to convert different versions of a CR.",
          "type": "object",
          "required": ["strategy"],
          "properties": {
            "strategy": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 55.4K bytes
    - Viewed (0)
  6. src/cmd/link/internal/loader/loader.go

    		ms.data = append(ms.data, make([]byte, int(siz)+1-cl)...)
    		ms.data = ms.data[0:cl]
    	}
    	ms.data = ms.data[:siz]
    }
    
    // Convert a local index to a global index.
    func (l *Loader) toGlobal(r *oReader, i uint32) Sym {
    	return r.syms[i]
    }
    
    // Convert a global index to a local index.
    func (l *Loader) toLocal(i Sym) (*oReader, uint32) {
    	return l.objs[l.objSyms[i].objidx], l.objSyms[i].s
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  7. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    					Image: "busybox",
    				},
    			},
    		},
    	}
    
    	// Set fake sandbox and fake containers to fakeRuntime.
    	fakeSandbox, fakeContainers := makeAndSetFakePod(t, m, fakeRuntime, pod)
    
    	// Convert the fakeContainers to kubecontainer.Container
    	containers := make([]*kubecontainer.Container, len(fakeContainers))
    	for i := range containers {
    		fakeContainer := fakeContainers[i]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

                                      output.getType(), shard_type)))
          return mlir::failure();
        shard_output_types.push_back(shard_type);
        full_output_types.push_back(output.getType());
      }
    
      // Convert split sharded inputs to MANUAL sharded inputs.
      // common_split_sharding is the split sharding that is common to all inputs
      // and outputs.
      llvm::SmallVector<Value, 4> manual_inputs;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_swagger_doc_generated.go

    	"preconditions":      "Must be fulfilled before a deletion is carried out. If not possible, a 409 Conflict status will be returned.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 49.2K bytes
    - Viewed (0)
  10. src/cmd/cgo/gcc.go

    // references to the imported package C, replacing them with
    // references to the equivalent Go types, functions, and variables.
    func (p *Package) Translate(f *File) {
    	for _, cref := range f.Ref {
    		// Convert C.ulong to C.unsigned long, etc.
    		cref.Name.C = cname(cref.Name.Go)
    	}
    
    	var conv typeConv
    	conv.Init(p.PtrSize, p.IntSize)
    
    	p.loadDefines(f)
    	p.typedefs = map[string]bool{}
    	p.typedefList = nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
Back to top