Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 44 for message1 (0.27 sec)

  1. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    	}
    
    	// check the 'alredy exists' msg was edited
    	msg := &err.(*errors.StatusError).ErrStatus.Message
    	if !strings.Contains(*msg, "object is being deleted:") {
    		t.Errorf("Unexpected error without the 'object is being deleted:' in message: %v", err)
    	}
    }
    
    // sequentialNameGenerator generates names by appending a monotonically-increasing integer to the base.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  2. src/cmd/go/internal/load/pkg.go

    		// to appear at the end of error message.
    		return "no non-test Go files in " + e.Package.Dir
    	}
    	return "no Go files in " + e.Package.Dir
    }
    
    // setLoadPackageDataError presents an error found when loading package data
    // as a *PackageError. It has special cases for some common errors to improve
    // messages shown to users and reduce redundancy.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  3. fastapi/applications.py

            async def websocket_endpoint(websocket: WebSocket):
                await websocket.accept()
                while True:
                    data = await websocket.receive_text()
                    await websocket.send_text(f"Message text was: {data}")
            ```
            """
    
            def decorator(func: DecoratedCallable) -> DecoratedCallable:
                self.add_api_websocket_route(
                    path,
                    func,
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 00:48:03 UTC 2024
    - 172.2K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/exec.go

    // C compiler. This is needed to disable escape codes in clang error
    // messages that confuse tools like cgo.
    func (b *Builder) cCompilerEnv() []string {
    	return []string{"TERM=dumb"}
    }
    
    // mkAbs returns an absolute path corresponding to
    // evaluating f in the directory dir.
    // We always pass absolute paths of source files so that
    // the error messages will include the full path to a file
    // in need of attention.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

                %read1, %read1_control = tf_executor.island wraps "tf.ReadVariableOp"(%arg0) : (tensor<*x!tf_type.resource<tensor<32xf32>>>) -> tensor<32xf32>
                %print, %print_control = tf_executor.island wraps "tf.Print"(%read1) { message = "read1 value" } : (tensor<32xf32>) -> (tensor<32xf32>)
                tf_executor.fetch %read1#0 : tensor<32xf32>
              }
              func.return %graph : tensor<32xf32>
            }
        ```
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

      std::map<std::string, std::set<std::string>> failed_custom_ops_;
    
      // Ops to provide warning messages.
      std::map<std::string, std::set<std::string>> custom_ops_;
      std::map<std::string, std::set<std::string>> flex_ops_;
    
      // Resource ops to provide warning messages.
      std::map<std::string, std::set<std::string>> resource_ops_;
    
      // Set of saved model tags, if any.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

      return success();
    }
    }  // namespace
    
    LogicalResult ReshapeOp::verify() {
      ReshapeOp op = *this;
      auto error_handler = [&op](const llvm::Twine &message) -> LogicalResult {
        return op.emitOpError() << message;
      };
      TensorType expected_ty;
      if (failed(GetReshapeOutputType(op.getTensor(), op.getShape(), error_handler,
                                      expected_ty)))
        return failure();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  8. pkg/apis/admissionregistration/validation/validation_test.go

    					Warning:  "message",
    				}},
    			},
    		},
    	}, {
    		name: "type checking bad json path",
    		status: &admissionregistration.ValidatingAdmissionPolicyStatus{
    			TypeChecking: &admissionregistration.TypeChecking{
    				ExpressionWarnings: []admissionregistration.ExpressionWarning{{
    					FieldRef: "spec[foo]",
    					Warning:  "message",
    				}},
    			},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 147.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      // node name couldn't be found in the input DebugInfo, a NameLoc is used as
      // the location.
      mlir::Location GetLocation(const Node& node);
    
      // Appends the location string for the node to the error message and returns
      // the combined error status.
      Status EmitErrorWithLocationStr(const Node& node, const Status& error_status);
    
      // Inserts a placeholder node in the graph to replace a feed output tensor,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  10. pkg/kubelet/eviction/helpers_test.go

    				if !strings.Contains(msg, "testcontainer was using 150Mi, request is 100Mi") {
    					t.Errorf("Expected 'exceeds memory' eviction message was not found.")
    				}
    			} else {
    				if strings.Contains(msg, "which exceeds its request") {
    					t.Errorf("Found 'exceeds memory' eviction message which was not expected.")
    				}
    			}
    		})
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 106.7K bytes
    - Viewed (0)
Back to top