Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 629 for whatev (0.12 sec)

  1. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_maven.adoc

     . link:https://scans.gradle.com[Create a build scan for the Maven build].
    +
    A build scan will make it easier to visualize what's happening in your existing Maven build.
    For Maven builds, you will be able to see the project structure, what plugins are being used, a timeline of the build steps, and more.
    Keep this handy so you can compare it to the Gradle build scans while converting the project.
    +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  2. src/cmd/go/internal/cache/prog.go

    	"fmt"
    	"io"
    	"log"
    	"os"
    	"os/exec"
    	"sync"
    	"sync/atomic"
    	"time"
    )
    
    // ProgCache implements Cache via JSON messages over stdin/stdout to a child
    // helper process which can then implement whatever caching policy/mechanism it
    // wants.
    //
    // See https://github.com/golang/go/issues/59719
    type ProgCache struct {
    	cmd    *exec.Cmd
    	stdout io.ReadCloser  // from the child process
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 19:23:25 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  3. samples/bookinfo/src/productpage/templates/productpage.html

    </script>
    {% endblock %}
    {% block content %}
    
    <nav class="bg-gray-800">
      <div class="container mx-auto px-4 sm:px-6 lg:px-8">
        <div class="relative flex h-16 items-center justify-between">
          <a href="#" class="text-white px-3 py-2 text-lg font-medium" aria-current="page">BookInfo Sample</a>
          <div class="absolute inset-y-0 right-0 flex items-center pr-2 sm:static sm:inset-auto sm:ml-6 sm:pr-0">
            {% if user: %}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  4. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/ExceptionPlaceholder.java

                    try {
                        throwable = new NullPointerException(throwable.getMessage());
                    } catch (Exception e) {
                        // if calling `getMessage()` fails for whatever reason, just ignore
                        // the replacement
                        return throwable;
                    }
                    throwable.setStackTrace(stackTrace);
                }
                return throwable;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  5. CONTRIBUTING.md

    For any non-trivial change, we need to be able to answer these questions:
    
    * Why is this change done? What's the use case?
    * For user facing features, what will the API look like?
    * What test cases should it have? What could go wrong?
    * How will it roughly be implemented? We'll happily provide code pointers to save you time.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 01:39:23 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/admissionregistration/v1alpha1/generated.proto

      // ResourceRules describes what operations on what resources/subresources the ValidatingAdmissionPolicy matches.
      // The policy cares about an operation if it matches _any_ Rule.
      // +listType=atomic
      // +optional
      repeated NamedRuleWithOperations resourceRules = 3;
    
      // ExcludeResourceRules describes what operations on what resources/subresources the ValidatingAdmissionPolicy should not care about.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/compile_test.go

    				"request.userInfo.groups == ['system:authenticated', 'my-admin-group']",
    				"request.userInfo.extra == {'some-key': ['some-value1', 'some-value2']}",
    				"request.dryRun == false",
    				"request.options == {'whatever': 'you want'}",
    			},
    		},
    		{
    			name: "invalid request",
    			errorExpressions: map[string]string{
    				"request.foo1 == 'nope'":                 "undefined field 'foo1'",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/validation/ValidationMessageCheckerTest.groovy

            when:
            render conflictingAnnotationsMessage {
                type('Whatever').property('prop')
                inConflict('Input', 'Output')
                includeLink()
            }
    
            then:
            outputEquals """
    Type 'Whatever' property 'prop' has conflicting type annotations declared: @Input, @Output.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 25.5K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/lifecycle/internal/MojoDescriptorCreator.java

            }
    
            injectPluginDeclarationFromProject(plugin, project);
    
            // If there is no version to be found then we need to look in the repository metadata for
            // this plugin and see what's specified as the latest release.
            //
            if (plugin.getVersion() == null) {
                resolvePluginVersion(plugin, session, project);
            }
    
            return pluginManager.getMojoDescriptor(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:55:54 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/css/base.css

        width: 170px;
        background-color: white;
        top: 40px;
        left: 7px; /* NOTE: This must match the padding of .site-header__navigation-link */
        padding: 3px 10px 6px 10px;
        z-index: 100;
    }
    
    .site-header__navigation-submenu-section .site-header__navigation-submenu .site-header__navigation-submenu-item-link {
        width: 100%;
        color: #02303A;
        white-space: nowrap;
        display: inline-block;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 30.5K bytes
    - Viewed (0)
Back to top