Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 183 for outlier (0.16 sec)

  1. maven-core/plugin-manager.txt

     * know which version of library the class comes from
     */
    
    This document outlines the concerns of a general plugin manager that would be used in conjunction with any Plexus-based application. The following outlined concerns are an attempt to describe what a plugin manager would need to do for Maven and for Nexus.
    
    h2. Concerns for the plugin manager
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jul 18 22:45:13 UTC 2022
    - 12.9K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/SmokeContinuousIntegrationTest.groovy

                doLast {}
            }
    
            task outer {
                dependsOn inner
                inputs.dir "src"
                outputs.file "build/outer.txt"
                doLast {}
            }
            """
    
            expect:
            succeeds("outer")
            executedAndNotSkipped(":inner", ":outer")
    
            when:
            waitBeforeModification(topLevelFile)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 18.5K bytes
    - Viewed (0)
  3. tensorflow/c/eager/parallel_device/parallel_device_lib.h

      //
      // TODO(allenl): Keep a map from outer thread to list of inner threads rather
      // than a single list of threads so aliased nested parallel devices don't
      // re-use a thread.
      std::vector<std::unique_ptr<DeviceThread>> device_threads_;
      // A cancellation manager to use if the caller does not provide one. When ops
      // are executed asynchronously this must outlive the queued op, so it can't be
      // function-local to Execute.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 25 15:21:13 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  4. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/text/TreeFormatter.java

                append(type.toString());
            }
            return this;
        }
    
        private void appendOuter(Class<?> type) {
            Class<?> outer = type.getEnclosingClass();
            if (outer != null) {
                appendOuter(outer);
                append(outer.getSimpleName());
                append(".");
            }
        }
    
        /**
         * Appends an annotation name to the current node.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/phases/certs/renewal/manager.go

    	if err != nil {
    		return errors.Wrapf(err, "failure while generating %s CSR and key", name)
    	}
    	if err := pkiutil.WriteKey(outdir, name, key); err != nil {
    		return errors.Wrapf(err, "failure while saving %s key", name)
    	}
    
    	if err := pkiutil.WriteCSR(outdir, name, csr); err != nil {
    		return errors.Wrapf(err, "failure while saving %s CSR", name)
    	}
    
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 15K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/phases/controlplane/volumes.go

    type controlPlaneHostPathMounts struct {
    	// volumes is a nested map that forces a unique volumes. The outer map's
    	// keys are a string that should specify the target component to add the
    	// volume to. The values (inner map) of the outer map are maps with string
    	// keys and v1.Volume values. The inner map's key should specify the volume
    	// name.
    	volumes map[string]map[string]v1.Volume
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 09:33:18 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  7. src/testing/sub_test.go

        sub_test.go:NNN: first this
        sub_test.go:NNN: and now this!
        sub_test.go:NNN: oh, and this too`,
    		maxPar: 1,
    		f: func(t *T) {
    			t.Errorf("first this")
    			outer := t
    			t.Run("", func(t *T) {
    				outer.Errorf("and now this!")
    			})
    			t.Errorf("oh, and this too")
    		},
    	}, {
    		desc: "subtest calls fatal on parent",
    		ok:   false,
    		output: `
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 21:27:08 UTC 2023
    - 23.8K bytes
    - Viewed (0)
  8. src/main/webapp/WEB-INF/view/admin/dict/mapping/admin_dict_mapping.jsp

                    </div>
                </div>
            </div>
            <section class="content">
                <div class="row">
                    <div class="col-md-12">
                        <div class="card card-outline card-primary">
                            <div class="card-header">
                                <h3 class="card-title">
                                    <la:message key="labels.dict_mapping_list_link"/>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Wed Feb 12 20:25:27 UTC 2020
    - 10.1K bytes
    - Viewed (0)
  9. src/main/webapp/WEB-INF/view/admin/dict/stopwords/admin_dict_stopwords.jsp

                    </div>
                </div>
            </div>
            <section class="content">
                <div class="row">
                    <div class="col-md-12">
                        <div class="card card-outline card-primary">
                            <div class="card-header">
                                <h3 class="card-title">
                                    <la:message key="labels.dict_stopwords_list_link"/>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 9.9K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-groovy/src/integTest/groovy/org/gradle/model/dsl/ModelMapDslIntegrationTest.groovy

            outputContains('''configure main
    configure test
    ''')
            outputContains("value = 12")
        }
    
        @Requires(UnitTestPreconditions.IsGroovy3)
        def "nested rule cannot reference method of delegate of outer closure with Groovy 3"() {
            buildFile << '''
    model {
        things {
            create('main') {
                create('test') { println "no" }
            }
        }
    }
    '''
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 10.9K bytes
    - Viewed (0)
Back to top