Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 67 for isExternal (0.21 sec)

  1. src/cmd/link/internal/loadelf/ldelf.go

    				// TODO(minux): correctly handle __i686.get_pc_thunk.bx without
    				// set dupok generally. See https://golang.org/cl/5823055
    				// comment #5 for details.
    				if s != 0 && elfsym.other == 2 {
    					if !l.IsExternal(s) {
    						l.MakeSymbolUpdater(s)
    					}
    					l.SetAttrDuplicateOK(s, true)
    					l.SetAttrVisibilityHidden(s, true)
    				}
    			}
    
    		case elf.STB_LOCAL:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:12:12 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  2. cmd/kubelet/app/server.go

    	}
    
    	if kubeDeps == nil {
    		kubeDeps, err = UnsecuredDependencies(s, featureGate)
    		if err != nil {
    			return err
    		}
    	}
    
    	if kubeDeps.Cloud == nil {
    		if !cloudprovider.IsExternal(s.CloudProvider) {
    			cloudprovider.DeprecationWarningForProvider(s.CloudProvider)
    			cloud, err := cloudprovider.InitCloudProvider(s.CloudProvider, s.CloudConfigFile)
    			if err != nil {
    				return err
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-problems-base/src/main/kotlin/org/gradle/internal/configuration/problems/DecoratedPropertyProblem.kt

                cutPart(lastIsInternal)
                this.lastIsInternal = null
            }
    
            private
            fun cutPart(isInternal: Boolean) {
                val text = drainBuffer()
                parts += StackTracePart(isInternal, text)
            }
    
            private
            fun drainBuffer(): String = buffer.toString().also { buffer.setLength(0) }
        }
    }
    
    
    private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 21:59:50 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  4. platforms/core-runtime/logging/src/main/java/org/gradle/internal/problems/failure/InternalStackTraceClassifier.java

        @Nullable
        @Override
        public StackTraceRelevance classify(StackTraceElement frame) {
            return isInternal(frame.getClassName()) ? StackTraceRelevance.INTERNAL : null;
        }
    
        private static boolean isInternal(String className) {
            // JDK calls
            return className.startsWith("java.") ||
                className.startsWith("jdk.") ||
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 17:15:42 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet.go

    		recorder:                       kubeDeps.Recorder,
    		cadvisor:                       kubeDeps.CAdvisorInterface,
    		cloud:                          kubeDeps.Cloud,
    		externalCloudProvider:          cloudprovider.IsExternal(cloudProvider),
    		providerID:                     providerID,
    		nodeRef:                        nodeRef,
    		nodeLabels:                     nodeLabels,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/xla_kernel_creator_test.cc

                                            input: 'a'
                                            input: 'b'
                                          )proto"),
                                          &kernel_);
      EXPECT_TRUE(absl::IsInternal(status)) << status;
    }
    
    TEST_F(XlaKernelCreatorTest, FailsIfXlaCompileAttrIsSetToFalse) {
      FunctionDef fdef = XTimesY();
      (*fdef.mutable_attr())["_XlaMustCompile"] = BoolAttr(false);
      Init({fdef});
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 16 01:39:55 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/normalization/KotlinApiClassExtractor.kt

            super.writeClassAnnotations(annotationMembers.filter { it.name != kotlinMetadataAnnotationSignature }.toSet())
        }
    
        override fun writeMethod(method: MethodMember) {
            when {
                method.isInternal() -> return
                method.isInline() -> throw CompileAvoidanceException.publicInlineFunction(method)
                else -> super.writeMethod(method)
            }
        }
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  8. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/AbstractSuperClassChangesRule.groovy

        }
    
        protected abstract boolean changed(JApiCompatibility member)
    
        protected abstract Violation checkSuperClassChanges(JApiClass apiClass, CtClass oldClass, CtClass newClass)
    
        protected boolean isInternal(CtClass c) {
            if (c.name.startsWith("java.")) {
                return false
            } else if (c.name.contains('.internal.')) {
                return true
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 06 19:15:15 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/utils/error_util_test.cc

      }
    
      // Verify passed in errors are propagated.
      {
        Status err = tensorflow::errors::Internal("Passed in error");
        ASSERT_TRUE(tensorflow::errors::IsInternal(
            StatusScopedDiagnosticHandler(&context).Combine(err)));
      }
    
      // Verify diagnostic reported are append to passed in error.
      {
        auto function = [&]() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 03:47:51 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/inspect/StructNodeInitializer.java

                    ModelRegistrations.Builder builder = managedRegistrationBuilder(childPath, property, nodeInitializerRegistry, publicType);
                    addLink(modelNode, builder, property.isInternal());
                } else {
                    // A nullable reference
                    modelNode.addReference(property.getName(), propertyType, null, modelNode.getDescriptor());
                }
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 9.7K bytes
    - Viewed (0)
Back to top