Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 91 for Tresults (0.26 sec)

  1. pkg/kubelet/kubelet_test.go

    	"k8s.io/kubernetes/pkg/kubelet/pluginmanager"
    	kubepod "k8s.io/kubernetes/pkg/kubelet/pod"
    	podtest "k8s.io/kubernetes/pkg/kubelet/pod/testing"
    	proberesults "k8s.io/kubernetes/pkg/kubelet/prober/results"
    	probetest "k8s.io/kubernetes/pkg/kubelet/prober/testing"
    	"k8s.io/kubernetes/pkg/kubelet/secret"
    	"k8s.io/kubernetes/pkg/kubelet/server"
    	serverstats "k8s.io/kubernetes/pkg/kubelet/server/stats"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  2. doc/go1.17_spec.html

    	n = len(p)
    	return
    }
    </pre>
    	</li>
    </ol>
    
    <p>
    Regardless of how they are declared, all the result values are initialized to
    the <a href="#The_zero_value">zero values</a> for their type upon entry to the
    function. A "return" statement that specifies results sets the result parameters before
    any deferred functions are executed.
    </p>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

        public static final String ERRORS_could_not_open_on_system = "{errors.could_not_open_on_system}";
    
        /** The key of the message: No more results could be displayed. */
        public static final String ERRORS_result_size_exceeded = "{errors.result_size_exceeded}";
    
        /** The key of the message: {0} file does not exist. */
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  4. src/crypto/x509/verify_test.go

    			t.Errorf("unexpected success for test #%d: domain=%s, constraint=%s", i, test.domain, test.constraint)
    			continue
    		}
    
    		if result != test.shouldMatch {
    			t.Errorf("unexpected result for test #%d: domain=%s, constraint=%s, result=%t", i, test.domain, test.constraint, result)
    		}
    	}
    }
    
    const selfSignedWithCommonName = `-----BEGIN CERTIFICATE-----
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

    outputDirectory:
     - transformed \\(Directory, [0-9a-f]+\\)
       - 0 \\(Directory, [0-9a-f]+\\)
         - lib1-green.jar \\(RegularFile, [0-9a-f]+\\)
       - tamper-tamper.txt \\(RegularFile, [0-9a-f]+\\)
    
    resultsFile:
     - results.bin \\(RegularFile, [0-9a-f]+\\)""")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  6. src/database/sql/sql_test.go

    	// 3. Check if 2.A has committed in Tx (pass) or outside of Tx (fail).
    	sendQuery := make(chan struct{})
    	// The Tx status is returned through the row results, ensure
    	// that the rows results are not canceled.
    	bypassRowsAwaitDone = true
    	hookTxGrabConn = func() {
    		cancel()
    		<-sendQuery
    	}
    	rollbackHook = func() {
    		close(sendQuery)
    	}
    	defer func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

          A map of: output key -> output result.
        """
        out = nn_ops.conv2d(
            conv_input,
            self.conv_filters,
            strides=[1, 1, 2, 1],
            dilations=[1, 1, 1, 1],
            padding='SAME',
            data_format='NHWC',
        )
    
        return {'output': out}
    
    
    # TODO(b/280208261): Add unit tests for comparing unquantized and
    # quantized results
    @test_util.run_all_in_graph_and_eager_modes
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/runtime/framework_test.go

    				t.Fatalf("Failed to create framework for testing: %v", err)
    			}
    
    			state := framework.NewCycleState()
    			result, status := f.RunPreFilterPlugins(ctx, state, nil)
    			if d := cmp.Diff(result, tt.wantPreFilterResult); d != "" {
    				t.Errorf("wrong status. got: %v, want: %v, diff: %s", result, tt.wantPreFilterResult, d)
    			}
    			if status.Code() != tt.wantStatusCode {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 103K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet_pods_test.go

    			}
    			if tc.expectedError {
    				assert.Error(t, err, tc.name)
    			} else {
    				assert.NoError(t, err, "[%s]", tc.name)
    
    				sort.Sort(envs(result))
    				sort.Sort(envs(tc.expectedEnvs))
    				assert.Equal(t, tc.expectedEnvs, result, "[%s] env entries", tc.name)
    			}
    		})
    
    	}
    }
    
    func waitingState(cName string) v1.ContainerStatus {
    	return waitingStateWithReason(cName, "")
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/transforms/optimize.cc

                            ::mlir::Operation::result_range result, Value input,
                            Value filter, Value bias,
                            StringAttr fused_activation_function,
                            StringAttr weights_format, BoolAttr keep_num_dims,
                            BoolAttr asymmetric_quantize_inputs) {
      auto fc_op = builder->create<FullyConnectedOp>(
          result[0].getLoc(), result.getTypes(), input, filter, bias,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
Back to top