Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for groupOne (0.17 sec)

  1. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

     * How Gradle finds tests to run (<<#sec:test_detection,Test detection>>)
     * How to make use of the major frameworks' mechanisms for grouping tests together (<<#test_grouping,Test grouping>>)
    
    But first, let's look at the basics of JVM testing in Gradle.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  2. cmd/sts-handlers_test.go

    		})
    		if err != nil {
    			c.Fatalf("export %d: Unable to attach policy: %v", caseNum, err)
    		}
    	}
    
    	for groupDN, policies := range content.ldapGroupPolicyMappings {
    		_, err := s.adm.AttachPolicyLDAP(ctx, madmin.PolicyAssociationReq{
    			Policies: policies,
    			Group:    groupDN,
    		})
    		if err != nil {
    			c.Fatalf("export %d: Unable to attach group policy: %v", caseNum, err)
    		}
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 18:45:50 UTC 2024
    - 90K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/ldap/LdapManager.java

                for (final SearchResult srcrslt : result) {
                    final String groupDn = srcrslt.getNameInNamespace();
                    if (logger.isDebugEnabled()) {
                        logger.debug("groupDn: {}", groupDn);
                    }
                    updateSearchRoles(roleSet, groupDn);
                }
            });
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/deadness_analysis.cc

      }
      return absl::OkStatus();
    }
    
    // We populate the nodes along a special topological order where nodes having
    // the same root frame are placed adjacent to each other.  This grouping enables
    // processing the graph per root frame at a time and guarantees that when a root
    // frame is being processed, nodes in the downstream frames have not yet been
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    dependencies that are not explainable by side effects of the involved ops.
    More precisely, for every minimal unexplainable control dependency path
    we emit op warnings for all involved ops. The pass does not report
    intermediate dummy ops for grouping control dependencies (Identity, NoOp),
    unless they are part of an unexplainable path between other ops.
    This pass is useful to understand control dependency conservatism for a
    given MLIR module.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  6. src/regexp/syntax/parse.go

    	p.stack = p.stack[:n-2]
    	if re2.Op != opLeftParen {
    		return &Error{ErrUnexpectedParen, p.wholeRegexp}
    	}
    	// Restore flags at time of paren.
    	p.flags = re2.Flags
    	if re2.Cap == 0 {
    		// Just for grouping.
    		p.push(re1)
    	} else {
    		re2.Op = OpCapture
    		re2.Sub = re2.Sub0[:1]
    		re2.Sub[0] = re1
    		p.push(re2)
    	}
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  7. tensorflow/c/c_api.h

    } TF_Input;
    
    // Represents a specific output of an operation.
    typedef struct TF_Output {
      TF_Operation* oper;
      int index;  // The index of the output within oper.
    } TF_Output;
    
    // TF_Function is a grouping of operations with defined inputs and outputs.
    // Once created and added to graphs, functions can be invoked by creating an
    // operation whose operation type matches the function name.
    typedef struct TF_Function TF_Function;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  8. pilot/pkg/model/push_context.go

    // to avoid passing around large objects - like full list of endpoints for a registry,
    // or the full list of endpoints for a service across registries, since it limits
    // scalability.
    //
    // Future optimizations will include grouping the endpoints by labels, gateway or region to
    // reduce the time when subsetting or split-horizon is used. This design assumes pilot
    // tracks all endpoints in the mesh and they fit in RAM - so limit is few M endpoints.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
Back to top