Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 371 for Metral (0.2 sec)

  1. src/cmd/compile/internal/ir/mini.go

    func (n *miniNode) Name() *Name             { return nil }
    func (n *miniNode) Sym() *types.Sym         { return nil }
    func (n *miniNode) Val() constant.Value     { panic(n.no("Val")) }
    func (n *miniNode) SetVal(v constant.Value) { panic(n.no("SetVal")) }
    func (n *miniNode) NonNil() bool            { return false }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 31 22:09:44 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/plugin/PluginParameterExpressionEvaluator.java

                            if (subResult != null) {
                                retVal += subResult;
                            } else {
                                retVal += "$" + expr.substring(index + 1, lastIndex + 1);
                            }
                        }
    
                        retVal += evaluate(expr.substring(lastIndex + 1));
                        return retVal;
                    }
                }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 17 17:55:08 UTC 2023
    - 16.7K bytes
    - Viewed (0)
  3. pkg/test/framework/components/istio/istio.go

    			}
    			retVal = thisVal
    		case 3: // match something like aaa[100]
    			thisVal := val[match[1]]
    			// If it is a list and looking for more down the path
    			if thisVal.GetListValue() != nil && len(path) > 1 {
    				index, _ := strconv.Atoi(match[2])
    				return getConfigValue(path[1:], thisVal.GetListValue().Values[index].GetStructValue().Fields)
    			}
    			retVal = thisVal
    		}
    	}
    	return retVal
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 30 17:47:34 UTC 2023
    - 8K bytes
    - Viewed (0)
  4. pkg/registry/core/componentstatus/rest_test.go

    		},
    	}
    }
    
    func createTestStatus(name string, status api.ConditionStatus, msg string, err string) *api.ComponentStatus {
    	retVal := &api.ComponentStatus{
    		Conditions: []api.ComponentCondition{
    			{Type: api.ComponentHealthy, Status: status, Message: msg, Error: err},
    		},
    	}
    	retVal.Name = name
    	return retVal
    }
    
    func TestList_NoError(t *testing.T) {
    	r := NewTestREST(testResponse{result: probe.Success, data: "ok"})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 13 08:10:29 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  5. maven-core/src/test/resources/projects/bad-dependency.xml

    <project>
      <modelVersion>4.0.0</modelVersion>
    
      <groupId>test</groupId>
      <artifactId>invalid</artifactId>
      <version>0.0.1-SNAPSHOT</version>
    
      <repositories>
        <repository>
          <id>central</id>
          <url>file:src/test/remote-repo</url>
        </repository>
      </repositories>
    
      <dependencies>
        <dependency>
          <!-- groupId deliberately missing -->
          <artifactId>b</artifactId>
          <version>0.1</version>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Sep 27 14:55:56 UTC 2011
    - 613 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/samples/build-organization/publishing-convention-plugins/groovy/convention-plugins/src/main/groovy/com.myorg.java-conventions.gradle

        // NOTE: external plugin version is specified in implementation dependency artifact of the project's build file
        id 'com.github.spotbugs'
    }
    // end::apply-external-plugin[]
    
    // Projects should use Maven Central for external dependencies
    // This could be the organization's private repository
    repositories {
        mavenCentral()
    }
    
    // Use the Checkstyle rules provided by the convention plugin
    // Do not allow any warnings
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 914 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/samples/build-organization/gradle-plugin/kotlin/greeting-plugin/build.gradle.kts

    // tag::plugin[]
    plugins {
        // Apply the Java Gradle plugin development plugin to add support for developing Gradle plugins
        `java-gradle-plugin`
    }
    
    repositories {
        // Use Maven Central for resolving dependencies
        mavenCentral()
    }
    
    dependencies {
        // Use JUnit test framework for unit tests
        testImplementation("junit:junit:4.13")
    }
    
    gradlePlugin {
        // Define the plugin
        val greeting by plugins.creating {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  8. src/main/java/jcifs/ntlmssp/av/AvPairs.java

            int size = 0;
            for ( AvPair p : pairs ) {
                size += 4 + p.getRaw().length;
            }
            size += 4;
    
            byte[] enc = new byte[size];
            int pos = 0;
            for ( AvPair p : pairs ) {
                byte[] raw = p.getRaw();
                SMBUtil.writeInt2(p.getType(), enc, pos);
                SMBUtil.writeInt2(raw.length, enc, pos + 2);
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 4.8K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/caching/local/internal/DirectoryBuildCacheServiceFactory.java

            // Use the deprecated retention period if configured on `DirectoryBuildCache`, or use the central 'buildCache' cleanup config if not.
            // If the deprecated property remains at the default, we can safely use the central value (which has the same default).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 18:35:55 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/SmbEnumerationUtil.java

                MsrpcDfsRootEnum rpc = new MsrpcDfsRootEnum(loc.getServer());
                handle.sendrecv(rpc);
                if ( rpc.retval != 0 ) {
                    throw new SmbException(rpc.retval, true);
                }
                return rpc.getEntries();
            }
        }
    
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sat Jul 20 08:41:19 UTC 2019
    - 12.5K bytes
    - Viewed (0)
Back to top