Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 310 for attr_ (0.04 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/resolve/ResolveTestFixture.groovy

                        moduleVersionId = id
                    }
                }
                return node(type, id, moduleVersionId, attrs)
            }
    
            NodeBuilder node(String type, String id, String moduleVersion, Map attrs) {
                def node = nodes[moduleVersion]
                if (!node) {
                    node = new NodeBuilder(type, id, moduleVersion, attrs, this)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 37.8K bytes
    - Viewed (0)
  2. src/log/slog/handler.go

    	//   - If r.PC is zero, ignore it.
    	//   - Attr's values should be resolved.
    	//   - If an Attr's key and value are both the zero value, ignore the Attr.
    	//     This can be tested with attr.Equal(Attr{}).
    	//   - If a group's key is empty, inline the group's Attrs.
    	//   - If a group has no Attrs (even if it has a non-empty key),
    	//     ignore it.
    	Handle(context.Context, Record) error
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 18:18:13 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  3. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/AbstractMavenPublishJavaIntegTest.groovy

                def attr1 = Attribute.of('custom', String)
                def attr2 = Attribute.of('nice', Boolean)
    
                dependencies {
                    api("org.test:bar:1.0") {
                        attributes {
                            attribute(attr1, 'hello')
                        }
                    }
    
                    api(project(':utils')) {
                        attributes {
                            attribute(attr1, 'bazinga')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 22:25:49 UTC 2023
    - 45.6K bytes
    - Viewed (0)
  4. api/go1.21.txt

    pkg log/slog, func GroupValue(...Attr) Value #56345
    pkg log/slog, func InfoContext(context.Context, string, ...interface{}) #61200
    pkg log/slog, func Info(string, ...interface{}) #56345
    pkg log/slog, func Int64(string, int64) Attr #56345
    pkg log/slog, func Int64Value(int64) Value #56345
    pkg log/slog, func Int(string, int) Attr #56345
    pkg log/slog, func IntValue(int) Value #56345
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 09:39:17 UTC 2023
    - 25.6K bytes
    - Viewed (0)
  5. samples/extauthz/cmd/extauthz/main.go

    	attrs := request.GetAttributes()
    
    	// Determine whether to allow or deny the request.
    	allow := false
    	checkHeaderValue, contains := attrs.GetRequest().GetHttp().GetHeaders()[checkHeader]
    	if contains {
    		allow = checkHeaderValue == allowedValue
    	} else {
    		allow = attrs.Source != nil && strings.HasSuffix(attrs.Source.Principal, "/sa/"+*serviceAccount)
    	}
    
    	if allow {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 15 18:23:48 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  6. src/log/slog/logger.go

    	l.log(ctx, level, msg, args...)
    }
    
    // LogAttrs is a more efficient version of [Logger.Log] that accepts only Attrs.
    func (l *Logger) LogAttrs(ctx context.Context, level Level, msg string, attrs ...Attr) {
    	l.logAttrs(ctx, level, msg, attrs...)
    }
    
    // Debug logs at [LevelDebug].
    func (l *Logger) Debug(msg string, args ...any) {
    	l.log(context.Background(), LevelDebug, msg, args...)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 08 18:26:18 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  7. maven-xml-impl/src/test/java/org/apache/maven/internal/xml/XmlNodeImplTest.java

            Xpp3Dom t1 = new Xpp3Dom("top");
            t1.setAttribute("attr", "value");
            t1.setInputLocation("t1top");
    
            t1.setAttribute(Xpp3Dom.SELF_COMBINATION_MODE_ATTRIBUTE, Xpp3Dom.SELF_COMBINATION_OVERRIDE);
    
            // create the recessive DOM
            Xpp3Dom t2 = new Xpp3Dom("top");
            t2.setAttribute("attr2", "value2");
            t2.setValue("t2Value");
            t2.setInputLocation("t2top");
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  8. tensorflow/cc/framework/scope.cc

        const Operation& colocate_with_op) const {
      std::unordered_set<string> current_constraints(colocation_constraints_);
      const AttrSlice attrs = colocate_with_op.node()->attrs();
      std::vector<string> node_constraints;
      if (TryGetNodeAttr(attrs, kColocationAttrName, &node_constraints)) {
        for (const string& entry : node_constraints) {
          StringPiece s(entry);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  9. src/html/template/transition.go

    			attr = attrURL
    		case contentTypeCSS:
    			attr = attrStyle
    		case contentTypeJS:
    			attr = attrScript
    		case contentTypeSrcset:
    			attr = attrSrcset
    		}
    	}
    
    	if j == len(s) {
    		state = stateAttrName
    	} else {
    		state = stateAfterName
    	}
    	return context{state: state, element: c.element, attr: attr}, j
    }
    
    // tAttrName is the context transition function for stateAttrName.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 19:54:31 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  10. plugin/pkg/auth/authorizer/node/node_authorizer.go

    		case configMapResource:
    			return r.authorizeReadNamespacedObject(nodeName, configMapVertexType, attrs)
    		case pvcResource:
    			if attrs.GetSubresource() == "status" {
    				return r.authorizeStatusUpdate(nodeName, pvcVertexType, attrs)
    			}
    			return r.authorizeGet(nodeName, pvcVertexType, attrs)
    		case pvResource:
    			return r.authorizeGet(nodeName, pvVertexType, attrs)
    		case resourceClaimResource:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 16K bytes
    - Viewed (0)
Back to top