Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 70 for errorCode (1.32 sec)

  1. .teamcity/mvnw.cmd

    if ERRORLEVEL 1 goto error
    goto end
    
    :error
    set ERROR_CODE=1
    
    :end
    @endlocal & set ERROR_CODE=%ERROR_CODE%
    
    if not "%MAVEN_SKIP_RC%" == "" goto skipRcPost
    @REM check for post script, once with legacy .bat ending and once with .cmd ending
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 26 01:48:39 UTC 2020
    - 6.5K bytes
    - Viewed (0)
  2. tensorflow/c/tf_status.cc

                           void* capture) {
      TSL_ForEachPayload(s, visitor, capture);
    }
    void TF_SetStatusFromIOError(TF_Status* s, int error_code,
                                 const char* context) {
      TSL_SetStatusFromIOError(s, error_code, context);
    }
    TF_Code TF_GetCode(const TF_Status* s) { return TF_Code(TSL_GetCode(s)); }
    const char* TF_Message(const TF_Status* s) { return TSL_Message(s); }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 24 18:40:14 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  3. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/dom/DefaultNodeTypes.kt

    }
    
    
    internal
    data class DefaultErrorNode(
        override val sourceData: SourceData,
        override val errors: Collection<DocumentError>
    ) : DeclarativeDocument.DocumentNode.ErrorNode {
        override fun toString(): String = "error(${errors.joinToString()})"
    }
    
    
    internal
    data class DefaultLiteralNode(
        override val value: Any,
        override val sourceData: SourceData
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:09 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/dom/DeclarativeDocument.kt

            interface ElementNode : DocumentNode {
                val name: String
                val elementValues: Collection<ValueNode>
                val content: Collection<DocumentNode>
            }
    
            interface ErrorNode : DocumentNode {
                val errors: Collection<DocumentError>
            }
        }
    
        sealed interface ValueNode : Node {
            override val sourceData: SourceData
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:09 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. test-site/activator.bat

    if ERRORLEVEL 1 goto error
    goto end
    
    :error
    set ERROR_CODE=1
    
    :end
    
    @endlocal
    
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 7.2K bytes
    - Viewed (0)
  6. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/dom/operations/overlay/OverlayRoutedDataContainers.kt

            is FromOverlay -> overlay.data(node)
            is OverlayNodeOrigin.ShadowedProperty -> overlay.data(from.overlayProperty)
        }
    
        override fun data(node: DeclarativeDocument.DocumentNode.ErrorNode): DError = when (overlayOriginContainer.data(node)) {
            is FromUnderlay -> underlay.data(node)
            is FromOverlay -> overlay.data(node)
        }
    }
    
    
    internal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:10 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/validation/field/errors_test.go

    	notSupported := NotSupported(NewPath("f"), "v", []string{"a", "b", "c"})
    	expected := `Unsupported value: "v": supported values: "a", "b", "c"`
    	if notSupported.ErrorBody() != expected {
    		t.Errorf("Expected: %s\n, but got: %s\n", expected, notSupported.ErrorBody())
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Oct 28 07:31:28 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  8. cmd/tier-handlers.go

    	if objAPI == nil {
    		return
    	}
    
    	password := cred.SecretKey
    	reqBytes, err := madmin.DecryptData(password, io.LimitReader(r.Body, r.ContentLength))
    	if err != nil {
    		writeErrorResponseJSON(ctx, w, errorCodes.ToAPIErrWithErr(ErrAdminConfigBadJSON, err), r.URL)
    		return
    	}
    
    	var cfg madmin.TierConfig
    	json := jsoniter.ConfigCompatibleWithStandardLibrary
    	if err := json.Unmarshal(reqBytes, &cfg); err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  9. tensorflow/cc/ops/while_loop_test.cc

                      const ops::BodyGraphBuilderFn& body,
                      error::Code error_code = error::OK,
                      const string& error_msg = "") {
        Status s =
            ops::BuildWhileLoop(scope_, inputs_, cond, body, kFrameName, &outputs_);
        EXPECT_EQ(s.code(), error_code);
        EXPECT_EQ(s.message(), error_msg);
      }
    
      template <typename T>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 13 22:30:58 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  10. src/runtime/defs_linux_arm.go

    	ts.tv_sec = timediv(ns, 1e9, &ts.tv_nsec)
    }
    
    type stackt struct {
    	ss_sp    *byte
    	ss_flags int32
    	ss_size  uintptr
    }
    
    type sigcontext struct {
    	trap_no       uint32
    	error_code    uint32
    	oldmask       uint32
    	r0            uint32
    	r1            uint32
    	r2            uint32
    	r3            uint32
    	r4            uint32
    	r5            uint32
    	r6            uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:05:10 UTC 2023
    - 3.9K bytes
    - Viewed (0)
Back to top