Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 2,159 for yFunction (0.26 sec)

  1. staging/src/k8s.io/api/rbac/v1/zz_generated.prerelease-lifecycle.go

    package v1
    
    // APILifecycleIntroduced is an autogenerated function, returning the release in which the API struct was introduced as int versions of major and minor for comparison.
    // It is controlled by "k8s:prerelease-lifecycle-gen:introduced" tags in types.go.
    func (in *ClusterRole) APILifecycleIntroduced() (major, minor int) {
    	return 1, 8
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/zz_generated.deepcopy.go

    		**out = **in
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Extensions.
    func (in *Extensions) DeepCopy() *Extensions {
    	if in == nil {
    		return nil
    	}
    	out := new(Extensions)
    	in.DeepCopyInto(out)
    	return out
    }
    
    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ArtifactCachesProvider.java

            return function.apply(getWritableCacheMetadata(), getWritableCacheAccessCoordinator());
        }
    
        default <T> Optional<T> withReadOnlyCache(BiFunction<? super ArtifactCacheMetadata, ? super ArtifactCacheLockingAccessCoordinator, T> function) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1beta1/zz_generated.conversion.go

    				return err
    			}
    		}
    	} else {
    		out.JWT = nil
    	}
    	return nil
    }
    
    // Convert_v1beta1_AuthenticationConfiguration_To_apiserver_AuthenticationConfiguration is an autogenerated conversion function.
    func Convert_v1beta1_AuthenticationConfiguration_To_apiserver_AuthenticationConfiguration(in *AuthenticationConfiguration, out *apiserver.AuthenticationConfiguration, s conversion.Scope) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 17:10:34 UTC 2024
    - 45.4K bytes
    - Viewed (0)
  5. pkg/controller/volume/persistentvolume/config/zz_generated.deepcopy.go

    }
    
    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in *PersistentVolumeRecyclerConfiguration) DeepCopyInto(out *PersistentVolumeRecyclerConfiguration) {
    	*out = *in
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PersistentVolumeRecyclerConfiguration.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/apps/v1/zz_generated.prerelease-lifecycle.go

    package v1
    
    // APILifecycleIntroduced is an autogenerated function, returning the release in which the API struct was introduced as int versions of major and minor for comparison.
    // It is controlled by "k8s:prerelease-lifecycle-gen:introduced" tags in types.go.
    func (in *ControllerRevision) APILifecycleIntroduced() (major, minor int) {
    	return 1, 9
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 4K bytes
    - Viewed (0)
  7. docs/en/docs/advanced/settings.md

            execute ->> code: return the result
        end
    
        rect rgba(0, 255, 255, .1)
            code ->> function: say_hi(name="Camila")
            function ->> code: return stored result
        end
    
        rect rgba(0, 255, 0, .1)
            code ->> function: say_hi(name="Rick")
            function ->> execute: execute function code
            execute ->> code: return the result
        end
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  8. src/runtime/traceback.go

    // called. The context function may be nil, in which case the
    // traceback function will only be called with the context field set
    // to zero.  If the context function is nil, then calls from Go to C
    // to Go will not show a traceback for the C portion of the call stack.
    //
    // SetCgoTraceback should be called only once, ideally from an init function.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/initialization/buildsrc/BuildSrcBuildListenerFactoryTest.groovy

    import org.gradle.util.TestUtil
    import spock.lang.Specification
    
    import java.util.function.Function
    
    class BuildSrcBuildListenerFactoryTest extends Specification {
    
        def startParameter = Mock(StartParameterInternal)
        def projectState = Mock(ProjectState) {
            fromMutableState(_) >> { Function function -> function.apply(project) }
        }
        def project = Mock(ProjectInternal) {
            getOwner() >> projectState
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 2K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/compilability_check_util.cc

      Status s;
      NameAttrList function;
      s = NameAndAttrsFromFunctionCall(call_def, &function);
      if (s.ok()) {
        s = lib_runtime->Instantiate(function.name(), AttrSlice(&function.attr()),
                                     &handle);
      }
      if (!s.ok()) {
        std::string uncompilable_reason =
            absl::StrCat("could not instantiate call: '", function.name(), "'");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 30.3K bytes
    - Viewed (0)
Back to top