Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 441 for copy2 (0.21 sec)

  1. staging/src/k8s.io/api/rbac/v1alpha1/generated.pb.go

    	i := len(dAtA)
    	_ = i
    	var l int
    	_ = l
    	i -= len(m.Name)
    	copy(dAtA[i:], m.Name)
    	i = encodeVarintGenerated(dAtA, i, uint64(len(m.Name)))
    	i--
    	dAtA[i] = 0x1a
    	i -= len(m.Kind)
    	copy(dAtA[i:], m.Kind)
    	i = encodeVarintGenerated(dAtA, i, uint64(len(m.Kind)))
    	i--
    	dAtA[i] = 0x12
    	i -= len(m.APIGroup)
    	copy(dAtA[i:], m.APIGroup)
    	i = encodeVarintGenerated(dAtA, i, uint64(len(m.APIGroup)))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler.go

    /*
    Copyright 2017 The Kubernetes Authors.
    
    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at
    
        http://www.apache.org/licenses/LICENSE-2.0
    
    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/storage/v1alpha1/generated.pb.go

    	_ = l
    	i -= len(m.NodeName)
    	copy(dAtA[i:], m.NodeName)
    	i = encodeVarintGenerated(dAtA, i, uint64(len(m.NodeName)))
    	i--
    	dAtA[i] = 0x1a
    	{
    		size, err := m.Source.MarshalToSizedBuffer(dAtA[:i])
    		if err != nil {
    			return 0, err
    		}
    		i -= size
    		i = encodeVarintGenerated(dAtA, i, uint64(size))
    	}
    	i--
    	dAtA[i] = 0x12
    	i -= len(m.Attacher)
    	copy(dAtA[i:], m.Attacher)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 76.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/rewrite.go

    					fmt.Printf("rewriting %s  ->  %s\n", v0.LongString(), v.LongString())
    				}
    
    				// Eliminate copy inputs.
    				// If any copy input becomes unused, mark it
    				// as invalid and discard its argument. Repeat
    				// recursively on the discarded argument.
    				// This phase helps remove phantom "dead copy" uses
    				// of a value so that a x.Uses==1 rule condition
    				// fires reliably.
    				for i, a := range v.Args {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

                }
    
                task copy {
                    doFirst {
                        provider.get().copy("a", "b")
                    }
                }
            """
    
            file("a").createFile()
            def dest = file("b/a")
            assert !dest.file
    
            when:
            run("copy")
    
            then:
            dest.file
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
  6. tensorflow/BUILD

    #             "*.bara.sky",
    #             "*.dic",
    #             "*.ftrcp",
    #         ],
    #         exclude = [
    #             "copy.bara.sky",
    #         ],
    #     ),
    #     visibility = ["//visibility:public"],
    # )
    #
    # filegroup(
    #     name = "copybara_config",
    #     srcs = ["copy.bara.sky"],
    #     data = [
    #         ":copybara_library",
    #         "//learning/brain/testing/copybara:all_bara_sky",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/project/DefaultProject.java

        }
    
        @Override
        public WorkResult copy(Closure closure) {
            return copy(configureUsing(closure));
        }
    
        @Override
        public WorkResult copy(Action<? super CopySpec> action) {
            return getFileOperations().copy(action);
        }
    
        @Override
        public WorkResult sync(Action<? super SyncSpec> action) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    }
    
    // Len returns the length, in bytes, of a valid security identifier SID.
    func (sid *SID) Len() int {
    	return int(GetLengthSid(sid))
    }
    
    // Copy creates a duplicate of security identifier SID.
    func (sid *SID) Copy() (*SID, error) {
    	b := make([]byte, sid.Len())
    	sid2 := (*SID)(unsafe.Pointer(&b[0]))
    	e := CopySid(uint32(len(b)), sid2, sid)
    	if e != nil {
    		return nil, e
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/windows/setupapi_windows.go

    	if err != nil {
    		return err
    	}
    	copy(data.description[:], str)
    	return nil
    }
    
    func (data *DrvInfoData) MfgName() string {
    	return UTF16ToString(data.mfgName[:])
    }
    
    func (data *DrvInfoData) SetMfgName(mfgName string) error {
    	str, err := UTF16FromString(mfgName)
    	if err != nil {
    		return err
    	}
    	copy(data.mfgName[:], str)
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 67.2K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    	// Counts of template parameters without template arguments,
    	// for lambdas.
    	typeTemplateParamCount     int
    	nonTypeTemplateParamCount  int
    	templateTemplateParamCount int
    }
    
    // copy returns a copy of the current state.
    func (st *state) copy() *state {
    	n := new(state)
    	*n = *st
    	return n
    }
    
    // fail panics with demangleErr, to be caught in doDemangle.
    func (st *state) fail(err string) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
Back to top