Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 141 for excluded (0.15 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/celcoststability_test.go

    				"self.withUnknownList[0] != self.withUnknownList[1]": 7,
    				"self.withUnknownList[1] == self.withUnknownList[2]": 7,
    				"self.withUnknownList[3] == self.withUnknownList[4]": 6,
    
    				// fields specified on the object schema that are unknown because the field's schema is unknown are also included equality checks
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:20:16 UTC 2024
    - 80.2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbFile.java

         * identical to the list returned by the parameterless <code>list()</code>
         * method minus filenames filtered by the specified filter.
         *
         * @param filter
         *            a filename filter to exclude filenames from the results
         * @return <code>String[]</code> array of matching files and directories,
         *         workgroups, servers, or shares depending on the context of the
         *         resource URL
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  3. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    // limitations under the License.
    
    :gradle-issues: https://github.com/gradle/gradle/issues/
    
    [[config_cache]]
    = Configuration cache
    
    // Run tests for snippets included in this chapter with:
    // ./gradlew :docs:docsTest --tests="ExemplarExternalSamplesFunctionalTest.snippet-configuration-cache-*"
    // ./gradlew :docs:docsTest --tests="ExemplarExternalSamplesFunctionalTest.snippet-value-providers-*"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

                tmp_host_outputs.push_back(v);
            }
          }
        }
      }
    
      // Value in `tmp_host_outputs` may contain user in non return op, which has
      // been in `external_outputs`. We need exclude those Value.
      for (auto val : tmp_host_outputs) {
        if (!external_outputs.contains(val)) host_outputs.push_back(val);
      }
    }
    
    // Output `shard_type`, which is the type of each shard, given `full_type`. If
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/extensions/v1beta1/types.go

    // that should not be included within this rule.
    type IPBlock struct {
    	// CIDR is a string representing the IP Block
    	// Valid examples are "192.168.1.0/24" or "2001:db8::/64"
    	CIDR string `json:"cidr" protobuf:"bytes,1,name=cidr"`
    	// Except is a slice of CIDRs that should not be included within an IP Block
    	// Valid examples are "192.168.1.0/24" or "2001:db8::/64"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:29 UTC 2023
    - 61.3K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GradleResolveVisitor.java

                    // We limit the inner class lookups here by using ConstructedClassWithPackage.
                    // This way only the name will change, the packagePrefix will
                    // not be included in the lookup. The case where the
                    // packagePrefix is really a class is handled elsewhere.
                    // WARNING: This code does not expect a class that has a static
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  7. src/go/build/build.go

    type fileEmbed struct {
    	pattern string
    	pos     token.Position
    }
    
    // matchFile determines whether the file with the given name in the given directory
    // should be included in the package being constructed.
    // If the file should be included, matchFile returns a non-nil *fileInfo (and a nil error).
    // Non-nil errors are reserved for unexpected problems.
    //
    // If name denotes a Go program, matchFile reads until the end of the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  8. src/encoding/json/decode_test.go

    					if err != nil {
    						t.Errorf("%s: %s: Unmarshal error: %v", tt.Where, target.Where, err)
    					}
    				} else {
    					if err == nil || !strings.Contains(err.Error(), "exceeded max depth") {
    						t.Errorf("%s: %s: Unmarshal error:\n\tgot:  %v\n\twant: exceeded max depth", tt.Where, target.Where, err)
    					}
    				}
    			})
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:40:14 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  9. src/crypto/tls/conn.go

    	// Instead, must renegotiate before it does.
    	// Not likely enough to bother.
    	panic("TLS: sequence number wraparound")
    }
    
    // explicitNonceLen returns the number of bytes of explicit nonce or IV included
    // in each record. Explicit nonces are present only in CBC modes after TLS 1.0
    // and in certain AEAD modes in TLS 1.2.
    func (hc *halfConn) explicitNonceLen() int {
    	if hc.cipher == nil {
    		return 0
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  10. src/go/parser/parser.go

    		colon := p.pos
    		p.next()
    		if label, isIdent := x[0].(*ast.Ident); mode == labelOk && isIdent {
    			// Go spec: The scope of a label is the body of the function
    			// in which it is declared and excludes the body of any nested
    			// function.
    			stmt := &ast.LabeledStmt{Label: label, Colon: colon, Stmt: p.parseStmt()}
    			return stmt, false
    		}
    		// The label declaration typically starts at x[0].Pos(), but the label
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
Back to top