Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 75 for joinTo (0.1 sec)

  1. src/go/parser/parser.go

    		typ = x
    		if p.tok == token.LBRACK {
    			// embedded instantiated interface
    			typ = p.parseTypeInstance(typ)
    		}
    	}
    
    	// Comment is added at the callsite: the field below may joined with
    	// additional type specs using '|'.
    	// TODO(rfindley) this should be refactored.
    	// TODO(rfindley) add more tests for comment handling.
    	return &ast.Field{Doc: doc, Names: idents, Type: typ}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  2. src/crypto/x509/x509.go

    //
    //	sha512WithRSAEncryption OBJECT IDENTIFIER ::= { pkcs-1 13 }
    //
    // RFC 5758 3.1 DSA Signature Algorithms
    //
    //	dsaWithSha256 OBJECT IDENTIFIER ::= {
    //		joint-iso-ccitt(2) country(16) us(840) organization(1) gov(101)
    //		csor(3) algorithms(4) id-dsa-with-sha2(3) 2}
    //
    // RFC 5758 3.2 ECDSA Signature Algorithm
    //
    //	ecdsa-with-SHA256 OBJECT IDENTIFIER ::= { iso(1) member-body(2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    		return "", apierrors.NewBadRequest("Name parameter required.")
    	}
    	if msgs := path.IsValidPathSegmentName(name); len(msgs) != 0 {
    		return "", apierrors.NewBadRequest(fmt.Sprintf("Name parameter invalid: %q: %s", name, strings.Join(msgs, ";")))
    	}
    	key = key + "/" + name
    	return key, nil
    }
    
    // NoNamespaceKeyFunc is the default function for constructing storage paths
    // to a resource relative to the given prefix without a namespace.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
  4. guava/src/com/google/common/util/concurrent/Futures.java

       * tasks that, barring bugs in the code, will not fail. This gives it exception-handling behavior
       * similar to that of {@code ForkJoinTask.join}.
       *
       * <p>Exceptions from {@code Future.get} are treated as follows:
       *
       * <ul>
       *   <li>Any {@link ExecutionException} has its <i>cause</i> wrapped in an {@link
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 64.1K bytes
    - Viewed (0)
  5. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

            buildPom("parent-inheritance/sub");
        }
    
        /*MNG-3995*/
        @Test
        void testExecutionConfigurationJoin() throws Exception {
            PomTestWrapper pom = buildPom("execution-configuration-join");
            assertEquals(2, ((List<?>) pom.getValue("build/plugins[1]/executions[1]/configuration[1]/fileset[1]")).size());
        }
    
        /*MNG-3803*/
        @Test
        void testPluginConfigProperties() throws Exception {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 93.2K bytes
    - Viewed (0)
  6. src/text/template/exec_test.go

    	BinaryFunc:                func(a, b string) string { return fmt.Sprintf("[%s=%s]", a, b) },
    	VariadicFunc:              func(s ...string) string { return fmt.Sprint("<", strings.Join(s, "+"), ">") },
    	VariadicFuncInt:           func(a int, s ...string) string { return fmt.Sprint(a, "=<", strings.Join(s, "+"), ">") },
    	NilOKFunc:                 func(s *int) bool { return s == nil },
    	ErrFunc:                   func() (string, error) { return "bla", nil },
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

        // have been initialized.
        GTEST_CHECK_POSIX_SUCCESS_(
            pthread_create(&thread_, 0, &ThreadFuncWithCLinkage, base));
      }
      ~ThreadWithParam() { Join(); }
    
      void Join() {
        if (!finished_) {
          GTEST_CHECK_POSIX_SUCCESS_(pthread_join(thread_, 0));
          finished_ = true;
        }
      }
    
      virtual void Run() {
        if (thread_can_start_ != NULL)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  8. tests/integration/ambient/baseline_test.go

    			return getGracePeriod(2)
    		})
    		// change the waypoint template
    		istio.GetOrFail(t, t).UpdateInjectionConfig(t, func(cfg *inject.Config) error {
    			mainTemplate := file.MustAsString(filepath.Join(env.IstioSrc, templateFile))
    			cfg.RawTemplates["waypoint"] = strings.ReplaceAll(mainTemplate, "terminationGracePeriodSeconds: 2", "terminationGracePeriodSeconds: 3")
    			return nil
    		}, cleanup.Always)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  9. src/cmd/cgo/gcc.go

    					f.NoCallbacks[funcName] = true
    				} else if directive == "noescape" {
    					fatalf("#cgo noescape disabled until Go 1.23")
    					f.NoEscapes[funcName] = true
    				}
    			}
    		}
    	}
    	f.Preamble = strings.Join(linesOut, "\n")
    }
    
    // addToFlag appends args to flag.
    func (p *Package) addToFlag(flag string, args []string) {
    	if flag == "CFLAGS" {
    		// We'll also need these when preprocessing for dwarf information.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/admissionregistration/v1beta1/generated.proto

      //
      // If multiple ValidatingAdmissionPolicyBinding resources match an
      // API request, then the valueExpression will be evaluated for
      // each binding. All unique values produced by the valueExpressions
      // will be joined together in a comma-separated list.
      //
      // Required.
      optional string valueExpression = 2;
    }
    
    // ExpressionWarning is a warning information that targets a specific expression.
    message ExpressionWarning {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 50.4K bytes
    - Viewed (0)
Back to top