Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 192 for raerror (0.11 sec)

  1. src/main/java/jcifs/internal/smb1/ServerMessageBlock.java

            return this.exception;
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.util.transport.Response#isError()
         */
        @Override
        public boolean isError () {
            return this.isError;
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.util.transport.Response#getRawPayload()
         */
        @Override
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Aug 05 09:45:59 UTC 2018
    - 32.7K bytes
    - Viewed (0)
  2. pkg/scheduler/testing/framework/fake_extender.go

    }
    
    // ErrorPrioritizerExtender implements PriorityFunc function to always return error.
    func ErrorPrioritizerExtender(pod *v1.Pod, nodes []*framework.NodeInfo) (*framework.NodeScoreList, error) {
    	return &framework.NodeScoreList{}, fmt.Errorf("some error")
    }
    
    // Node1PrioritizerExtender implements PriorityFunc function to give score 10
    // if the given node's name is "node1"; otherwise score 1.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 19:07:19 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ShortCircuitEmptyConfigurationResolverSpec.groovy

            when:
            def results = dependencyResolver.resolveGraph(resolveContext)
    
            then:
            def resolvedConfig = results.legacyResults.resolvedConfiguration
            !resolvedConfig.hasError()
            resolvedConfig.rethrowFailure()
    
            resolvedConfig.getFiles(Specs.<Dependency> satisfyAll()).isEmpty()
            resolvedConfig.getFirstLevelModuleDependencies().isEmpty()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  4. istioctl/pkg/internaldebug/internal-debug_test.go

    	cases := []execTestCase{
    		{ // case 0, no args
    			args:           []string{},
    			noIstiod:       true,
    			expectedOutput: "Error: debug type is required\n",
    			wantException:  true,
    		},
    		{ // case 1, no istiod
    			args:           []string{"adsz"},
    			noIstiod:       true,
    			expectedOutput: "Error: no running Istio pods in \"istio-system\"\n",
    			wantException:  true,
    		},
    		{ // case 2, with Istiod instance
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 08:28:50 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/server/resourceconfig/helpers_test.go

    	}
    }
    
    func newFakeScheme(t *testing.T) *runtime.Scheme {
    	ret := runtime.NewScheme()
    	require.NoError(t, apiv1.AddToScheme(ret))
    	require.NoError(t, appsv1.AddToScheme(ret))
    	require.NoError(t, extensionsapiv1beta1.AddToScheme(ret))
    
    	require.NoError(t, ret.SetVersionPriority(apiv1.SchemeGroupVersion))
    	require.NoError(t, ret.SetVersionPriority(extensionsapiv1beta1.SchemeGroupVersion))
    
    	return ret
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 23 18:36:33 UTC 2022
    - 25.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfrt/tests/tfrt_fallback/batch_function_fallback_benchmark_test.cc

      result_tensors.resize(func->result_types().size() - 1);
    
      func->Execute(exec_ctx, arguments.values(), results);
      host->Await(results);
    
      for (auto& result : results) {
        EXPECT_FALSE(result->IsError());
      }
    }
    
    // Runs a BEF function that batches a function that does nothing just to measure
    // the runtime overhead. The BEF function signature is adapted from a real model
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Dec 08 08:08:48 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/SmbTreeImpl.java

                throw new SMBProtocolDowngradeException("Signature error during negotiate validation", e);
            }
            catch ( SmbException e ) {
                if ( log.isDebugEnabled() ) {
                    log.debug(String.format("VALIDATE_NEGOTIATE_INFO response code 0x%x", e.getNtStatus()));
                }
                log.trace("VALIDATE_NEGOTIATE_INFO returned error", e);
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 29.6K bytes
    - Viewed (0)
  8. istioctl/pkg/proxystatus/proxystatus_test.go

    			noIstiod:       true,
    			expectedOutput: "Error: no running Istio pods in \"istio-system\"\n",
    			wantException:  true,
    		},
    		{ // case 1, with Istiod instance
    			args:           []string{},
    			expectedString: "NAME     CLUSTER     CDS     LDS     EDS     RDS     ECDS     ISTIOD",
    		},
    		{ // case 2: supplying nonexistent pod name should result in error with flag
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 08:28:50 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/error-message-with-source-info.pbtxt

    # Checks that source debug information is used in the output error message.
    # CHECK: error: 'tf.Add' op operands don't have broadcast-compatible shapes
    # CHECK: math_ops.add(x, y, name='x_y_sum')
    # CHECK: build_graph(out_dir)
    node: {
      name: "x"
      op: "Placeholder"
      attr: {
        key: "shape"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 10 19:00:09 UTC 2020
    - 1.1K bytes
    - Viewed (0)
  10. security/pkg/pki/ca/ca_test.go

    		if signErr != nil {
    			if tc.expectedError == "" {
    				t.Errorf("%s: Sign error: %v", id, err)
    			}
    			if certPEM != nil {
    				t.Errorf("%s: Expected null cert be obtained a non-null cert.", id)
    			}
    			if signErr.(*caerror.Error).Error() != tc.expectedError {
    				t.Errorf("%s: Expected error: %s but got error: %s.", id, tc.expectedError, signErr.(*caerror.Error).Error())
    			}
    			continue
    		}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 08:51:27 UTC 2023
    - 29.1K bytes
    - Viewed (0)
Back to top