Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 200 for reflectively (0.16 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ResolveExceptionMapper.java

                return failure;
            }
    
            ImmutableList<String> resolutions = ImmutableList.of(
                "The project declares repositories, effectively ignoring the repositories you have declared in the settings.\n" +
                    "To determine how project repositories are declared, configure your build to fail on project repositories.\n" +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:56:27 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. pkg/config/analysis/analyzers/injection/injection-image.go

    		},
    	}
    }
    
    // Analyze implements Analyzer.
    func (a *ImageAnalyzer) Analyze(c analysis.Context) {
    	proxyImageMap := make(map[string]string)
    
    	// when multiple injector configmaps exist, we may need to assess them respectively.
    	c.ForEach(gvk.ConfigMap, func(r *resource.Instance) bool {
    		cmName := r.Metadata.FullName.Name.String()
    		if strings.HasPrefix(cmName, "istio-sidecar-injector") {
    			cm := r.Message.(*v1.ConfigMap)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 05 03:44:57 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/legalize_jax_random.cc

    // 2. Replace the body of "tfl_wrapped_jax_random_uniform" and
    //    "tfl_wrapped_jax_random_normal" with tfl.CustomOp("RandomUniform") and
    //     tfl.CustomOp("RandomStandardNormal"), respectively.
    
    #include <string>
    
    #include "llvm/ADT/ArrayRef.h"
    #include "llvm/ADT/STLExtras.h"
    #include "llvm/ADT/SmallVector.h"
    #include "llvm/ADT/StringRef.h"
    #include "llvm/Support/Debug.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  4. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/project/structure/PluginStructureProvider.kt

     */
    @Suppress("UnstableApiUsage")
    @KaAnalysisNonPublicApi
    object PluginStructureProvider {
        /**
         * This fake plugin is required to provide it as a required parameter.
         * Effectively, it is only used to group project listeners.
         */
        private val fakePluginDescriptor = DefaultPluginDescriptor("analysis-api-standalone-base-loader")
    
        private object ReadContext : ReadModuleContext {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 22:09:27 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  5. architecture/build-state-model.md

    When that directory changes between Gradle invocations, the state is discarded and recreated.
    Typically, the Gradle user home directory does not change for a given process, so this is effectively process state.
    
    The build process state is managed by the `BuildProcessState` class. An instance is created once for a given process.
    
    ### Build session state
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 13:39:49 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  6. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtExpressionTypeProvider.kt

         *   N is the number of value parameters in the function;
         *   Ps are types of value parameters;
         *   R is the return type of the function.
         * Depending on the function's attributes, such as `suspend` or reflective access, different functional type,
         * such as `SuspendFunction`, `KFunction`, or `KSuspendFunction`, will be constructed.
         */
        public fun KtFunction.getFunctionalType(): KaType =
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 5K bytes
    - Viewed (0)
  7. src/os/zero_copy_linux.go

    	// where splice(2) will just return EINVAL; newer kernels support non-streams like UDP, but I really
    	// doubt that splice(2) could help non-streams, cuz they usually send small frames respectively
    	// and one splice call would result in one frame.
    	// splice(2) is suitable for large data but the generation of fragments defeats its edge here.
    	// Therefore, don't bother to try splice if the r is not a streaming descriptor.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 18:12:56 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  8. integration-tests/gradle/build.gradle.kts

              candidates
                .find {
                  val idField =
                    it.javaClass.getDeclaredMethod(
                      "getId"
                    ) // reflective access to make this compile with Gradle 5
                  (idField.invoke(it) as ModuleComponentIdentifier).module == "guava"
                }
                ?.apply { select(this) }
            }
          }
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 03 20:33:34 UTC 2024
    - 7K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/telemetry/internal/telemetry/dir.go

    // Acceptable values for mode are "on", "off", or "local".
    //
    // SetMode always writes the mode file, and explicitly records the date at
    // which the modefile was updated. This means that calling SetMode with "on"
    // effectively resets the timeout before the next telemetry report is uploaded.
    func (d Dir) SetMode(mode string) error {
    	return d.SetModeAsOf(mode, time.Now())
    }
    
    // SetModeAsOf is like SetMode, but accepts an explicit time to use to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:13:09 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/node/v1/types.go

    	NodeSelector map[string]string `json:"nodeSelector,omitempty" protobuf:"bytes,1,opt,name=nodeSelector"`
    
    	// tolerations are appended (excluding duplicates) to pods running with this
    	// RuntimeClass during admission, effectively unioning the set of nodes
    	// tolerated by the pod and the RuntimeClass.
    	// +optional
    	// +listType=atomic
    	Tolerations []corev1.Toleration `json:"tolerations,omitempty" protobuf:"bytes,2,rep,name=tolerations"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 4.7K bytes
    - Viewed (0)
Back to top