Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 2,701 for Excluded (0.15 sec)

  1. pkg/test/framework/components/echo/echotest/filters.go

    		if needed <= 0 {
    			needed = 1
    		}
    
    		return nRegularPodPerNamespace(needed, exclude)(instances).Append(nonRegular)
    	}
    }
    
    func SingleSimplePodServiceAndAllSpecial(exclude ...echo.Instance) Filter {
    	return SimplePodServiceAndAllSpecial(1, exclude...)
    }
    
    func nRegularPodPerNamespace(needed int, exclude echo.Instances) Filter {
    	return func(instances echo.Instances) echo.Instances {
    		// Apply the filters.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 29 23:48:45 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  2. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/DefaultConfigurableFileTreeTest.groovy

            [included1, included2, excluded1, excluded2, ignored1].each { File file ->
                file.parentFile.mkdirs()
                file.text = 'some text'
            }
    
            fileTree.exclude '**/excluded*'
    
            FileTree filtered = fileTree.matching {
                include('*/*included*')
                exclude('**/not*')
            }
    
            expect:
            filtered.files == [included1, included2] as Set
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  3. tests/integration/telemetry/api/dashboard_test.go

    			expr, f := tm["expr"]
    			if !f {
    				continue
    			}
    			queries = append(queries, expr.(string))
    		}
    	}
    	return queries, nil
    }
    
    func includeQuery(query string, excluded []string) bool {
    	for _, f := range excluded {
    		if strings.Contains(query, f) {
    			return false
    		}
    	}
    	return true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  4. releasenotes/notes/45641.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: istioctl
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 12 21:04:47 UTC 2023
    - 252 bytes
    - Viewed (0)
  5. hack/verify-no-vendor-cycles.sh

    # Staging repos are explicitly excluded even though go list does not currently consider symlinks
    go run cmd/dependencycheck/dependencycheck.go -restrict "^k8s\.io/kubernetes/" -exclude "^k8s\.io/(${staging_repos_pattern})(/|$)" "${KUBE_TEMP}/deps_other.json"
    go run cmd/dependencycheck/dependencycheck.go -restrict "^k8s\.io/kubernetes/" -exclude "^k8s\.io/(${staging_repos_pattern})(/|$)" "${KUBE_TEMP}/deps_linux.json"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:56 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfr/utils/utils.h

    // Copies all the allowed attributes in 'src' to 'dst'. FlatSymbolRefAttr is
    // excluded.
    LogicalResult CopyNonSymbolRefAttrs(CallOp src, Operation* dst);
    
    // Propagates all the attributes in 'src' to the operations between 'begin' and
    // 'end'. Operation 'end' is excluded.
    void PropagateAttrsToOperations(CallOp src, Block::iterator begin,
                                    Block::iterator end);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 03:08:33 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/duration/duration.go

    // ShortHumanDuration returns a succinct representation of the provided duration
    // with limited precision for consumption by humans.
    func ShortHumanDuration(d time.Duration) string {
    	// Allow deviation no more than 2 seconds(excluded) to tolerate machine time
    	// inconsistence, it can be considered as almost now.
    	if seconds := int(d.Seconds()); seconds < -1 {
    		return "<invalid>"
    	} else if seconds < 0 {
    		return "0s"
    	} else if seconds < 60 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 29 09:44:02 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  8. pilot/pkg/xds/xds_test.go

    {{- end }}
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: excluded
      namespace: excluded
    spec:
      hosts:
      - app.com
      ports:
      - number: 80
        name: http
        protocol: HTTP
      resolution: {{.Resolution}}
      endpoints:
    {{- if eq .Resolution "DNS" }}
      - address: excluded.com
    {{- else }}
      - address: 9.9.9.9
    {{- end }}
    ---
    apiVersion: networking.istio.io/v1alpha3
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 16:59:05 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/helper/WebFsIndexHelper.java

                        if (logger.isInfoEnabled()) {
                            logger.info("Included URL: {}", urlValue);
                        }
                    } else if (line.startsWith(DISABLE_URL_ENCODE)) {
                        urlEncodeDisabled.set(true);
                    }
                }));
    
                // set excluded urls
                urlEncodeDisabled.set(false);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 22.6K bytes
    - Viewed (1)
  10. docs/compression/README.md

    To show help on setting compression config values.
    
    ```bash
    ~ mc admin config set myminio compression
    ```
    
    To enable compression for all content, no matter the extension and content type
    (except for the default excluded types) set BOTH extensions and mime types to empty.
    
    ```bash
    ~ mc admin config set myminio compression enable="on" extensions="" mime_types=""
    ```
    
    The compression settings may also be set through environment variables.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Mar 11 11:55:34 UTC 2024
    - 5.1K bytes
    - Viewed (0)
Back to top