Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 137 for desc1 (0.11 sec)

  1. src/cmd/go/internal/work/gccgo.go

    				// forward the _cgo_flags directly to this step.
    				return "", nil
    			}
    		}
    		err := sh.run(root.Objdir, desc, nil, tools.ar(), arArgs, "x", newArchive, "_cgo_flags")
    		if err != nil {
    			return "", err
    		}
    		err = sh.run(".", desc, nil, tools.ar(), arArgs, "d", newArchive, "_cgo_flags")
    		if err != nil {
    			return "", err
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 02 22:18:34 UTC 2024
    - 19K bytes
    - Viewed (0)
  2. security/pkg/nodeagent/caclient/providers/citadel/client_test.go

    			server:       mockTokenCAServer{Certs: nil},
    			expectedCert: nil,
    			expectedErr:  "rpc error: code = Unknown desc = no HTTP authorization header exists",
    			token:        "",
    		},
    		"InValid Token": {
    			server:       mockTokenCAServer{Certs: []string{}},
    			expectedCert: nil,
    			expectedErr:  "rpc error: code = Unknown desc = token is not valid",
    			token:        fakeToken,
    		},
    	}
    
    	for id, tc := range testCases {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 24 21:03:23 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  3. cmd/metrics.go

    	return &minioCollector{
    		desc: prometheus.NewDesc("minio_stats", "Statistics exposed by MinIO server", nil, nil),
    	}
    }
    
    // minioCollector is the Custom Collector
    type minioCollector struct {
    	desc *prometheus.Desc
    }
    
    // Describe sends the super-set of all possible descriptors of metrics
    func (c *minioCollector) Describe(ch chan<- *prometheus.Desc) {
    	ch <- c.desc
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  4. cmd/metrics-resource.go

    type minioResourceCollector struct {
    	metricsGroups []*MetricsGroupV2
    	desc          *prometheus.Desc
    }
    
    // Describe sends the super-set of all possible descriptors of metrics
    func (c *minioResourceCollector) Describe(ch chan<- *prometheus.Desc) {
    	ch <- c.desc
    }
    
    // Collect is called by the Prometheus registry when collecting metrics.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 17 15:15:13 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/helper/QueryHelperTest.java

                    Set.of(), //
                    "{\"timestamp\":{\"order\":\"desc\"}}", //
                    buildQuery("sort:timestamp.desc"));
    
            assertQueryContext(query, Map.of(), //
                    Set.of(), //
                    "{\"timestamp\":{\"order\":\"desc\"}}{\"last_modified\":{\"order\":\"asc\"}}", //
                    buildQuery("sort:timestamp.desc sort:last_modified"));
            assertQueryContext(query, Map.of(), //
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 37.3K bytes
    - Viewed (0)
  6. pkg/kubelet/lifecycle/predicate_test.go

    )
    
    var (
    	quantity = *resource.NewQuantity(1, resource.DecimalSI)
    )
    
    func TestRemoveMissingExtendedResources(t *testing.T) {
    	for _, test := range []struct {
    		desc string
    		pod  *v1.Pod
    		node *v1.Node
    
    		expectedPod *v1.Pod
    	}{
    		{
    			desc: "requests in Limits should be ignored",
    			pod: makeTestPod(
    				v1.ResourceList{},                        // Requests
    				v1.ResourceList{"foo.com/bar": quantity}, // Limits
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 23:13:50 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  7. pkg/proxy/metrics/metrics.go

    type nfacctMetricCollector struct {
    	metrics.BaseStableCollector
    	client      nfacct.Interface
    	counter     string
    	description *metrics.Desc
    }
    
    // DescribeWithStability implements the metrics.StableCollector interface.
    func (n *nfacctMetricCollector) DescribeWithStability(ch chan<- *metrics.Desc) {
    	ch <- n.description
    }
    
    // CollectWithStability implements the metrics.StableCollector interface.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  8. src/testing/fstest/testfs.go

    		t.errorf("%s: failed TestReader:\n\t%s", file, strings.ReplaceAll(err.Error(), "\n", "\n\t"))
    	}
    }
    
    func (t *fsTester) checkFileRead(file, desc string, data1, data2 []byte) {
    	if string(data1) != string(data2) {
    		t.errorf("%s: %s: different data returned\n\t%q\n\t%q", file, desc, data1, data2)
    		return
    	}
    }
    
    // checkBadPath checks that various invalid forms of file's name cannot be opened using t.fsys.Open.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/passes/preprocess_op.cc

      }
    
      void runOnOperation() override;
    
     private:
      Option<OpSet> op_set_{
          *this, "target-opset", llvm::cl::init(OpSet::UNIFORM_QUANTIZED),
          llvm::cl::desc("Choose target opset."),
          llvm::cl::values(
              clEnumValN(OpSet::TF, "TF",
                         "Uses TF ops that mimic quantization behavior"),
              clEnumValN(OpSet::XLA, "XLA", "Uses TF XLA ops"),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  10. pkg/kubelet/logs/container_log_manager_test.go

    	assert.Len(t, logs, 2)
    	assert.Equal(t, testLogs[0], filepath.Join(dir, logs[0].Name()))
    	assert.Equal(t, testLogs[3], filepath.Join(dir, logs[1].Name()))
    }
    
    func TestRemoveExcessLog(t *testing.T) {
    	for desc, test := range map[string]struct {
    		max    int
    		expect []string
    	}{
    		"MaxFiles equal to 2": {
    			max:    2,
    			expect: []string{},
    		},
    		"MaxFiles more than 2": {
    			max:    3,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 12.7K bytes
    - Viewed (0)
Back to top