Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 146 for pirates (0.17 sec)

  1. pilot/pkg/serviceregistry/serviceentry/store.go

    // deleteInstanceKeys deletes all instances with the given configKey and instanceKey
    // Note: as a convenience, this takes a []ServiceInstance instead of []instanceKey, as most callers have this format
    // However, this function only operates on the instance keys
    func (s *serviceInstancesStore) deleteInstanceKeys(key configKeyWithParent, instances []*model.ServiceInstance) {
    	for _, i := range instances {
    		ikey := makeInstanceKey(i)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  2. istioctl/pkg/metrics/metrics.go

    query results are printed to the console, organized by workload name.
    
    All metrics returned are from server-side reports. This means that latencies
    and error rates are from the perspective of the service itself and not of an
    individual client (or aggregate set of clients). Rates and latencies are
    calculated over a time interval of 1 minute.
    `,
    		Example: `  # Retrieve workload metrics for productpage-v1 workload
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  3. src/internal/coverage/pods/pods.go

    			dirIndices = append(dirIndices, k)
    		}
    	}
    	return collectPodsImpl(files, dirIndices, warn), nil
    }
    
    // CollectPodsFromFiles functions the same as "CollectPods" but
    // operates on an explicit list of files instead of a directory.
    func CollectPodsFromFiles(files []string, warn bool) []Pod {
    	return collectPodsImpl(files, nil, warn)
    }
    
    type fileWithAnnotations struct {
    	file   string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  4. pkg/ctrlz/topics/collection.go

    func NewStaticCollection(name string, items map[string]any) ReadableCollection {
    	return &staticCollection{
    		name:  name,
    		items: items,
    	}
    }
    
    // staticCollection is a ReadableCollection implementation that operates on static data that is supplied
    // during construction.
    type staticCollection struct {
    	name  string
    	items map[string]any
    }
    
    var _ ReadableCollection = &staticCollection{}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 14:06:41 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  5. docs/integrations/veeam/README.md

    ```
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 5.4K bytes
    - Viewed (0)
  6. manifests/addons/dashboards/pilot-dashboard.gen.json

             "targets": [
                {
                   "datasource": {
                      "type": "prometheus",
                      "uid": "$datasource"
                   },
                   "expr": "sum by (pod) (\n  irate(\n    container_cpu_usage_seconds_total{container=\"discovery\", pod=~\"istiod-.*\"}\n  [$__rate_interval])\n)",
                   "legendFormat": "Container ({{pod}})"
                }
             ],
             "title": "CPU Usage",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  7. docs/es/docs/features.md

    El framework **FastAPI** está creado para satisfacer eso. El auto-completado funciona en todas partes.
    
    No vas a tener que volver a la documentación seguido.
    
    Así es como tu editor te puede ayudar:
    
    * en <a href="https://code.visualstudio.com/" class="external-link" target="_blank">Visual Studio Code</a>:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  8. src/internal/trace/mud.go

    			d.trackSum = sum
    			return
    		}
    		sum = newSum
    	}
    	d.trackBucket = len(d.hist)
    	d.trackSum = sum
    }
    
    // approxInvCumulativeSum is like invCumulativeSum, but specifically
    // operates on the tracked mass and returns an upper and lower bound
    // approximation of the inverse cumulative sum.
    //
    // The true inverse cumulative sum will be in the range [lower, upper).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  9. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/CustomComponentBinariesIntegrationTest.groovy

    """)
            where:
            ruleInputs << ["SampleLibrary library, CustomModel myModel",  "CustomModel myModel, SampleLibrary library"]
        }
    
        def "@ComponentBinaries rule operates with fully configured component"() {
            given:
            buildFile << """
    @Managed
    trait BinaryWithValue implements BinarySpec {
        String valueFromComponent
    }
    @Managed
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  10. internal/s3select/json/preader.go

    package json
    
    import (
    	"bufio"
    	"bytes"
    	"io"
    	"runtime"
    	"sync"
    
    	"github.com/bcicen/jstream"
    	"github.com/minio/minio/internal/s3select/sql"
    )
    
    // PReader - JSON record reader for S3Select.
    // Operates concurrently on line-delimited JSON.
    type PReader struct {
    	args        *ReaderArgs
    	readCloser  io.ReadCloser   // raw input
    	buf         *bufio.Reader   // input to the splitter
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Mar 05 04:57:35 UTC 2023
    - 6.4K bytes
    - Viewed (0)
Back to top