Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 859 for SplitV (0.25 sec)

  1. src/vendor/golang.org/x/crypto/internal/poly1305/sum_s390x.s

    	VESRLG $26, h0, T_1  \
    	VN     MOD26, h2, h2 \
    	VN     MOD26, h0, h0 \
    	VAG    T_0, h3, h3   \
    	VAG    T_1, h1, h1   \
    	VESRLG $26, h3, T_2  \
    	VN     MOD26, h3, h3 \
    	VAG    T_2, h4, h4
    
    // EXPAND splits the 128-bit little-endian values in0 and in1
    // into 26-bit big-endian limbs and places the results into
    // the first and second lane of dā‚‚ā‚†[0:4] respectively.
    //
    // The EX0, EX1 and EX2 constants are arrays of byte indices
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  2. pkg/spiffe/spiffe.go

    	}
    	split := strings.Split(s[URIPrefixLen:], "/")
    	if len(split) != 5 {
    		return Identity{}, fmt.Errorf("identity is not a spiffe format")
    	}
    	if split[1] != NamespaceSegment || split[3] != ServiceAccountSegment {
    		return Identity{}, fmt.Errorf("identity is not a spiffe format")
    	}
    	return Identity{
    		TrustDomain:    split[0],
    		Namespace:      split[2],
    		ServiceAccount: split[4],
    	}, nil
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/SuggestHelper.java

            }
            fessConfig = ComponentUtil.getFessConfig();
            split(fessConfig.getSuggestFieldContents(), ",")
                    .of(stream -> stream.filter(StringUtil::isNotBlank).forEach(contentFieldNameSet::add));
            split(fessConfig.getSuggestFieldTags(), ",").of(stream -> stream.filter(StringUtil::isNotBlank).forEach(tagFieldNameSet::add));
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 18K bytes
    - Viewed (0)
  4. guava-testlib/src/com/google/common/collect/testing/SpliteratorTester.java

          return spliterator.tryAdvance(action);
        }
    
        @Override
        @Nullable GeneralSpliterator<E> trySplit() {
          Spliterator<E> split = spliterator.trySplit();
          return split == null ? null : new GeneralSpliteratorOfObject<>(split);
        }
      }
    
      private static final class GeneralSpliteratorOfPrimitive<
              E extends @Nullable Object, C, S extends Spliterator.OfPrimitive<E, C, S>>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 22 18:19:31 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  5. istioctl/pkg/workload/workload_test.go

    			description:       "Invalid command args - missing service name and namespace",
    			args:              strings.Split("group create", " "),
    			expectedException: true,
    			expectedOutput:    "Error: expecting a workload name\n",
    		},
    		{
    			description:       "Invalid command args - missing service name",
    			args:              strings.Split("group create -n bar", " "),
    			expectedException: true,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 16:59:05 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  6. callbacks/preload.go

    		for _, join := range joins {
    			if _, ok := relationships.Relations[join]; ok && name == join {
    				joined = true
    				continue
    			}
    			joinNames := strings.SplitN(join, ".", 2)
    			if len(joinNames) == 2 {
    				if _, ok := relationships.Relations[joinNames[0]]; ok && name == joinNames[0] {
    					joined = true
    					nestedJoins = append(nestedJoins, joinNames[1])
    				}
    			}
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:52:33 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/helper/WebFsIndexHelper.java

     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.helper;
    
    import static org.codelibs.core.stream.StreamUtil.split;
    
    import java.util.ArrayList;
    import java.util.Collections;
    import java.util.List;
    import java.util.Map;
    import java.util.concurrent.atomic.AtomicBoolean;
    import java.util.regex.Pattern;
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  8. tools/docker-builder/types.go

    	if legacy, f := os.LookupEnv("DOCKER_ARCHITECTURES"); f {
    		arch = strings.Split(legacy, ",")
    	}
    
    	hub := []string{env.Register("HUB", "localhost:5000", "").Get()}
    	if hubs, f := os.LookupEnv("HUBS"); f {
    		hub = strings.Split(hubs, " ")
    	}
    	tag := []string{env.Register("TAG", "latest", "").Get()}
    	if tags, f := os.LookupEnv("TAGS"); f {
    		tag = strings.Split(tags, " ")
    	}
    
    	builder := DockerBuilder
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 13:23:41 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/api/internal/artifacts/verification/DependencyVerificationFixture.groovy

        }
    
        void module(String id, @DelegatesTo(value = ComponentVerification, strategy = Closure.DELEGATE_FIRST) Closure action) {
            withVerifier {
                def list = id.split(":")
                def group = list[0]
                def name = list[1]
                def version = list.size() == 3 ? list[2] : "1.0"
                def md = verificationMetadata.find {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  10. src/net/smtp/smtp_test.go

    		actualcmds := cmdbuf.String()
    		client := strings.Join(strings.Split(basicClient, "\n"), "\r\n")
    		if client != actualcmds {
    			t.Fatalf("Got:\n%s\nExpected:\n%s", actualcmds, client)
    		}
    	})
    }
    
    func TestNewClient(t *testing.T) {
    	server := strings.Join(strings.Split(newClientServer, "\n"), "\r\n")
    	client := strings.Join(strings.Split(newClientClient, "\n"), "\r\n")
    
    	var cmdbuf strings.Builder
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
Back to top