Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,059 for createfing (0.2 sec)

  1. staging/src/k8s.io/api/networking/v1alpha1/zz_generated.deepcopy.go

    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IPAddress.
    func (in *IPAddress) DeepCopy() *IPAddress {
    	if in == nil {
    		return nil
    	}
    	out := new(IPAddress)
    	in.DeepCopyInto(out)
    	return out
    }
    
    // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
    func (in *IPAddress) DeepCopyObject() runtime.Object {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:58 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/authentication/v1/zz_generated.deepcopy.go

    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SelfSubjectReview.
    func (in *SelfSubjectReview) DeepCopy() *SelfSubjectReview {
    	if in == nil {
    		return nil
    	}
    	out := new(SelfSubjectReview)
    	in.DeepCopyInto(out)
    	return out
    }
    
    // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 02 12:50:40 UTC 2023
    - 8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/policy/v1/zz_generated.deepcopy.go

    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Eviction.
    func (in *Eviction) DeepCopy() *Eviction {
    	if in == nil {
    		return nil
    	}
    	out := new(Eviction)
    	in.DeepCopyInto(out)
    	return out
    }
    
    // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
    func (in *Eviction) DeepCopyObject() runtime.Object {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 10 22:32:27 UTC 2022
    - 5.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/apis/example/zz_generated.deepcopy.go

    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Pod.
    func (in *Pod) DeepCopy() *Pod {
    	if in == nil {
    		return nil
    	}
    	out := new(Pod)
    	in.DeepCopyInto(out)
    	return out
    }
    
    // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
    func (in *Pod) DeepCopyObject() runtime.Object {
    	if c := in.DeepCopy(); c != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 6.1K bytes
    - Viewed (0)
  5. pkg/apis/policy/zz_generated.deepcopy.go

    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Eviction.
    func (in *Eviction) DeepCopy() *Eviction {
    	if in == nil {
    		return nil
    	}
    	out := new(Eviction)
    	in.DeepCopyInto(out)
    	return out
    }
    
    // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
    func (in *Eviction) DeepCopyObject() runtime.Object {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 07 20:44:13 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/policy/v1beta1/zz_generated.deepcopy.go

    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Eviction.
    func (in *Eviction) DeepCopy() *Eviction {
    	if in == nil {
    		return nil
    	}
    	out := new(Eviction)
    	in.DeepCopyInto(out)
    	return out
    }
    
    // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
    func (in *Eviction) DeepCopyObject() runtime.Object {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 07 20:44:13 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  7. src/packaging/common/scripts/preinst

            if ! getent group "$FESS_GROUP" > /dev/null 2>&1 ; then
                echo -n "Creating $FESS_GROUP group..."
                addgroup --quiet --system "$FESS_GROUP"
                echo " OK"
            fi
    
            # Create fess user if not existing
            if ! id $FESS_USER > /dev/null 2>&1 ; then
                echo -n "Creating $FESS_USER user..."
                adduser --quiet \
                        --system \
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Dec 01 09:48:15 UTC 2016
    - 2.3K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/api/internal/file/copy/CopyActionExecuterTest.groovy

        def "correctly executes copy actions, normalising and handling excludes"() {
            given:
            file("a").with {
                createFile("a")
            }
            file("b").with {
                createFile("b")
                createDir("b1").createFile("b1")
            }
    
            def resolver = TestFiles.resolver(testDirectory)
            def fileCollectionFactory = TestFiles.fileCollectionFactory(testDirectory)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 28 12:39:32 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  9. subprojects/core-api/src/test/groovy/org/gradle/initialization/UserHomeInitScriptFinderTest.groovy

            then:
            sourceList.isEmpty()
        }
    
        def "adds init scripts from init directory when it exists."() {
            given:
            def initScript = temporaryFolder.createFile("init.d/script.gradle")
            def secondScript = temporaryFolder.createFile("init.d/another.gradle.kts")
            def sourceList = []
    
            when:
            finder.findScripts(sourceList)
    
            then:
            sourceList.size() == 2
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/apis/audit/v1/zz_generated.deepcopy.go

    		}
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Event.
    func (in *Event) DeepCopy() *Event {
    	if in == nil {
    		return nil
    	}
    	out := new(Event)
    	in.DeepCopyInto(out)
    	return out
    }
    
    // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
    func (in *Event) DeepCopyObject() runtime.Object {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 06 19:08:27 UTC 2021
    - 7.9K bytes
    - Viewed (0)
Back to top