Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 2,829 for main2 (0.21 sec)

  1. samples/extauthz/cmd/extauthz/main.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package main
    
    import (
    	"context"
    	"flag"
    	"fmt"
    	"io"
    	"log"
    	"net"
    	"net/http"
    	"os"
    	"os/signal"
    	"strings"
    	"sync"
    	"syscall"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 15 18:23:48 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  2. security/tools/generate_cert/main.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    // Provide a tool to generate X.509 certificate with different options.
    
    package main
    
    import (
    	"crypto"
    	"crypto/x509"
    	"encoding/json"
    	"flag"
    	"fmt"
    	"log"
    	"os"
    	"os/exec"
    	"time"
    
    	k8s "k8s.io/api/core/v1"
    
    	"istio.io/istio/security/pkg/pki/ca"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 28 16:21:30 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  3. src/cmd/go/main.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:generate go test cmd/go -v -run=^TestDocsUpToDate$ -fixdocs
    
    package main
    
    import (
    	"context"
    	"flag"
    	"fmt"
    	"internal/buildcfg"
    	"log"
    	"os"
    	"path/filepath"
    	rtrace "runtime/trace"
    	"slices"
    	"strings"
    
    	"cmd/go/internal/base"
    	"cmd/go/internal/bug"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:09:11 UTC 2024
    - 10K bytes
    - Viewed (0)
  4. tools/docker-builder/main.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package main
    
    import (
    	"context"
    	"fmt"
    	"os"
    	"os/exec"
    	"path/filepath"
    	"runtime"
    	"strings"
    	"time"
    
    	"github.com/spf13/cobra"
    	"sigs.k8s.io/yaml"
    
    	"istio.io/istio/pkg/log"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 13:23:41 UTC 2023
    - 10K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/main.go

    // license that can be found in the LICENSE file.
    
    // The gen command generates Go code (in the parent directory) for all
    // the architecture-specific opcodes, blocks, and rewrites.
    package main
    
    import (
    	"bytes"
    	"flag"
    	"fmt"
    	"go/format"
    	"log"
    	"math/bits"
    	"os"
    	"path"
    	"regexp"
    	"runtime"
    	"runtime/pprof"
    	"runtime/trace"
    	"sort"
    	"strings"
    	"sync"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 22:42:34 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  6. pkg/config/schema/codegen/tools/collections.main.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package main
    
    import (
    	"fmt"
    	"os"
    
    	"istio.io/istio/pkg/config/schema/codegen"
    )
    
    // Utility for generating collections.gen.go. Called from gen.go
    func main() {
    	if err := codegen.Run(); err != nil {
    		fmt.Println(err)
    		os.Exit(-2)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 02 20:50:14 UTC 2023
    - 826 bytes
    - Viewed (0)
  7. misc/go_android_exec/main.go

    //go:build darwin || dragonfly || freebsd || illumos || linux || netbsd || openbsd
    
    // This program can be used as go_android_GOARCH_exec by the Go tool.
    // It executes binaries on an android device using adb.
    package main
    
    import (
    	"bytes"
    	"errors"
    	"fmt"
    	"io"
    	"log"
    	"os"
    	"os/exec"
    	"os/signal"
    	"path"
    	"path/filepath"
    	"regexp"
    	"runtime"
    	"strconv"
    	"strings"
    	"sync"
    	"syscall"
    )
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 21 17:46:57 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  8. pkg/config/analysis/msg/generate.main.go

    // limitations under the License.
    
    //go:build ignore
    // +build ignore
    
    package main
    
    import (
    	"bytes"
    	"fmt"
    	"os"
    	"regexp"
    	"text/template"
    
    	"sigs.k8s.io/yaml"
    )
    
    const (
    	codeRegex = `^IST\d\d\d\d$`
    	nameRegex = `^[[:upper:]]\w*$`
    )
    
    // Utility for generating messages.gen.go. Called from gen.go
    func main() {
    	if len(os.Args) != 3 {
    		fmt.Println("Invalid args:", os.Args)
    		os.Exit(-1)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 28 16:55:31 UTC 2023
    - 4K bytes
    - Viewed (0)
  9. testing/smoke-test/src/smokeTest/resources/org/gradle/play/integtest/fixtures/external/basicplayapp/app/views/main.scala.html

    @(title: String)(content: Html)
    <!DOCTYPE html>
    <html>
        <head>
            <title>@title</title>
            <link rel="stylesheet" media="screen" href="@routes.Assets.at("stylesheets/main.css")">
            <link rel="shortcut icon" type="image/png" href="@routes.Assets.at("images/favicon.png")">
            <script src="@routes.Assets.at("javascripts/hello.js")" type="text/javascript"></script>
        </head>
        <body>
    @content
        </body>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 440 bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/cmd/bisect/main.go

    // previous example using Bazel, the invocation is:
    //
    //	bazel test --define=gc_goopts=-d=loopvarhash=PATTERN,unused=RANDOM //path/to:test
    //
    // [GODEBUG setting]: https://tip.golang.org/doc/godebug
    package main
    
    import (
    	"context"
    	"flag"
    	"fmt"
    	"io"
    	"log"
    	"math/bits"
    	"math/rand"
    	"os"
    	"os/exec"
    	"sort"
    	"strconv"
    	"strings"
    	"time"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 18:11:19 UTC 2023
    - 23.9K bytes
    - Viewed (0)
Back to top